Code source

Replicated code from Jenny Trickey’s repo here

Trip/drift: CalCurCEAS_2024_024

Summaries generated: 2025 Jun 10 18:52 UTC

Setup

Load needed libraries.

# load all libraries
devtools::install_github('taikisan21/PAMpal')
library(PAMpal)
# library(kableExtra) # known bug with R ver 4.3.0 so install from github
devtools::install_github('kupietz/kableExtra')
library(kableExtra)
library(ggplot2)
library(RSQLite)
library(tuneR)
# library(wesanderson)
library(here)
library(DBI)

# I don't think we need these but saving here in case
library(dplyr)
# library(tcltk)
# library(manipulate)

Set user-defined variables.

# name project
# ProjID <- 'MHI UxS Glider Project'

# combine trip, recorder, pg version (all defined in YAML) to single run string
# dbFileStr <- paste0(params$mission, '_', params$drift, '_Kogia_', params$pgver)

# define subfolder paths based on selected analysis folder and trip strings
# path_to_db <- file.path(params$path_pg, 'Database')
# path_to_binaries <- file.path(params$path_pg, 'Binaries', params$drift)
path_to_binaries <- choose.dir(default="", caption = "Select path to specific drift main binaries folder")
# assemble some file names
# pamguard database
# dbFile <- file.path(path_to_db, paste0(dbFileStr, '.sqlite3'))
dbFile <- file.choose()
# dbFile <- choose.files(default = "", caption = "Select database file", multi = FALSE)
# already processed acoustic study 'dets' file
detsFile <- file.path(params$path_dets, paste0(params$mission, '_', params$drift,'/', params$mission, '_2024_', params$drift, '_Filtered.rdata'))
detsFiltFile <- file.path(params$path_dets, 
                          paste0(params$mission, '_', params$drift,'/', params$mission, '_2024_', params$drift, '_', params$channelStr, '.rdata'))
# specify calibration file
# calFile <- params$calFile # pull from YAML

# set path to reference spectra if will be used
path_to_refSpec <- file.path(params$path_to_refSpec) # pull from YAML
# specify which reference spectra to plot
# refSpecList = c('Gm', 'Pc')
refSpecList <- params$refSpecList # pull from YAML
refSpecSp <- params$refSpecSp


# ALTERNATIVE SELECT PATHS
# path_pg <- choose.dir(default = "", caption = "Select path to pamguard folder that contains databases and binaries folders")
# # select path to database files 
# path_to_db <- choose.dir(default = "", caption = "Select path to folder with all database files") 
# # select path to specific binary drift file
# path_to_binaries <- choose.dir(default="", caption = "Select path to specific drift main folder")

# # set up datebase driver
# sqlite <- dbDriver("SQLite") # outdated/no longer supported 

# connect to SQLite database using the newer method
con <- dbConnect(RSQLite::SQLite(), dbname = dbFile)

#Set time zone to UTC
Sys.setenv(TZ = 'UTC')

# reference spectra colors - allows for up to 6 ref specs
# pastel
# rsPalette <- c('#66c2a5', '#fc8d62', '#8da0cb', '#e78ac3', 
#                '#a6d854', '#ffd92f')
# bold
rsPalette <- c('#1b9e77', '#d95f02', '#7570b3', '#e7298a', 
               '#66a61e', '#e6ab02')

Define needed functions

Source some external functions

source(here::here('_code/functions', 'loadMultiBinaries.R'))
source(here::here('_code/functions', 'plotContours.R'))
source(here::here('_code/functions', 'clickSummary.R'))
source(here::here('_code/functions', 'whistleSummary.R'))

# if not using Rproj/here package use:
# source(file.path(params$path_code, 'R', 'functions', 'loadMultiBinaries.R'))

Load and prep AcousticStudies

If already created, load an existing dets PAMpal AcousticStudy object for event processing. We need to load both the unfiltered dets and filtered detsFilt AcousticStudies.

# load existing dets AcousticStudy (created with 
# workflow_generate_acousticStudies.R)
# load(detFile)
if (file.exists(detsFile)){
  dets <- readRDS(detsFile)
  cat('Loaded', detsFile, '\n')
} else {
  cat('No AcousticStudy \'dets\' file available', '\n')
}
## Loaded F:/gcp_upload/2_Acoustic-Studies/CalCurCEAS_024/CalCurCEAS_2024_024_Filtered.rdata
if (file.exists(detsFiltFile)){
  detsFilt <- readRDS(detsFiltFile)
  cat('Loaded', detsFiltFile, '\n')
} else {
  cat('No AcousticStudy \'detsFilt\' file available', '\n')
}
## Loaded F:/gcp_upload/2_Acoustic-Studies/CalCurCEAS_024/CalCurCEAS_2024_024_ch1.rdata
# summarize how many events
nEvents <- length(names(PAMpal::events(dets)))
# number of events may change after filtering (all clicks may be filtered out)
nEventsFilt <- length(names(PAMpal::events(detsFilt)))

Loaded F:/gcp_upload/2_Acoustic-Studies/CalCurCEAS_024/CalCurCEAS_2024_024_Filtered.rdata and F:/gcp_upload/2_Acoustic-Studies/CalCurCEAS_024/CalCurCEAS_2024_024_ch1.rdata

## Updated the locations of 1 out of 1 missing database files. 
## Updated the locations of 16048 out of 16048 missing binary files. 
## Updating files in events...
##   |                                                                                                   |                                                                                           |   0%  |                                                                                                   |                                                                                           |   1%  |                                                                                                   |=                                                                                          |   1%  |                                                                                                   |=                                                                                          |   2%  |                                                                                                   |==                                                                                         |   2%  |                                                                                                   |==                                                                                         |   3%  |                                                                                                   |===                                                                                        |   3%  |                                                                                                   |===                                                                                        |   4%  |                                                                                                   |====                                                                                       |   4%  |                                                                                                   |====                                                                                       |   5%  |                                                                                                   |=====                                                                                      |   5%  |                                                                                                   |=====                                                                                      |   6%  |                                                                                                   |======                                                                                     |   6%  |                                                                                                   |======                                                                                     |   7%  |                                                                                                   |=======                                                                                    |   7%  |                                                                                                   |=======                                                                                    |   8%  |                                                                                                   |========                                                                                   |   8%  |                                                                                                   |========                                                                                   |   9%  |                                                                                                   |=========                                                                                  |   9%  |                                                                                                   |=========                                                                                  |  10%  |                                                                                                   |==========                                                                                 |  10%  |                                                                                                   |==========                                                                                 |  11%  |                                                                                                   |==========                                                                                 |  12%  |                                                                                                   |===========                                                                                |  12%  |                                                                                                   |===========                                                                                |  13%  |                                                                                                   |============                                                                               |  13%  |                                                                                                   |============                                                                               |  14%  |                                                                                                   |=============                                                                              |  14%  |                                                                                                   |=============                                                                              |  15%  |                                                                                                   |==============                                                                             |  15%  |                                                                                                   |==============                                                                             |  16%  |                                                                                                   |===============                                                                            |  16%  |                                                                                                   |===============                                                                            |  17%  |                                                                                                   |================                                                                           |  17%  |                                                                                                   |================                                                                           |  18%  |                                                                                                   |=================                                                                          |  18%  |                                                                                                   |=================                                                                          |  19%  |                                                                                                   |==================                                                                         |  19%  |                                                                                                   |==================                                                                         |  20%  |                                                                                                   |===================                                                                        |  20%  |                                                                                                   |===================                                                                        |  21%  |                                                                                                   |====================                                                                       |  21%  |                                                                                                   |====================                                                                       |  22%  |                                                                                                   |====================                                                                       |  23%  |                                                                                                   |=====================                                                                      |  23%  |                                                                                                   |=====================                                                                      |  24%  |                                                                                                   |======================                                                                     |  24%  |                                                                                                   |======================                                                                     |  25%  |                                                                                                   |=======================                                                                    |  25%  |                                                                                                   |=======================                                                                    |  26%  |                                                                                                   |========================                                                                   |  26%  |                                                                                                   |========================                                                                   |  27%  |                                                                                                   |=========================                                                                  |  27%  |                                                                                                   |=========================                                                                  |  28%  |                                                                                                   |==========================                                                                 |  28%  |                                                                                                   |==========================                                                                 |  29%  |                                                                                                   |===========================                                                                |  29%  |                                                                                                   |===========================                                                                |  30%  |                                                                                                   |============================                                                               |  30%  |                                                                                                   |============================                                                               |  31%  |                                                                                                   |=============================                                                              |  31%  |                                                                                                   |=============================                                                              |  32%  |                                                                                                   |==============================                                                             |  32%  |                                                                                                   |==============================                                                             |  33%  |                                                                                                   |==============================                                                             |  34%  |                                                                                                   |===============================                                                            |  34%  |                                                                                                   |===============================                                                            |  35%  |                                                                                                   |================================                                                           |  35%  |                                                                                                   |================================                                                           |  36%  |                                                                                                   |=================================                                                          |  36%  |                                                                                                   |=================================                                                          |  37%  |                                                                                                   |==================================                                                         |  37%  |                                                                                                   |==================================                                                         |  38%  |                                                                                                   |===================================                                                        |  38%  |                                                                                                   |===================================                                                        |  39%  |                                                                                                   |====================================                                                       |  39%  |                                                                                                   |====================================                                                       |  40%  |                                                                                                   |=====================================                                                      |  40%  |                                                                                                   |=====================================                                                      |  41%  |                                                                                                   |======================================                                                     |  41%  |                                                                                                   |======================================                                                     |  42%  |                                                                                                   |=======================================                                                    |  42%  |                                                                                                   |=======================================                                                    |  43%  |                                                                                                   |========================================                                                   |  43%  |                                                                                                   |========================================                                                   |  44%  |                                                                                                   |========================================                                                   |  45%  |                                                                                                   |=========================================                                                  |  45%  |                                                                                                   |=========================================                                                  |  46%  |                                                                                                   |==========================================                                                 |  46%  |                                                                                                   |==========================================                                                 |  47%  |                                                                                                   |===========================================                                                |  47%  |                                                                                                   |===========================================                                                |  48%  |                                                                                                   |============================================                                               |  48%  |                                                                                                   |============================================                                               |  49%  |                                                                                                   |=============================================                                              |  49%  |                                                                                                   |=============================================                                              |  50%  |                                                                                                   |==============================================                                             |  50%  |                                                                                                   |==============================================                                             |  51%  |                                                                                                   |===============================================                                            |  51%  |                                                                                                   |===============================================                                            |  52%  |                                                                                                   |================================================                                           |  52%  |                                                                                                   |================================================                                           |  53%  |                                                                                                   |=================================================                                          |  53%  |                                                                                                   |=================================================                                          |  54%  |                                                                                                   |==================================================                                         |  54%  |                                                                                                   |==================================================                                         |  55%  |                                                                                                   |===================================================                                        |  55%  |                                                                                                   |===================================================                                        |  56%  |                                                                                                   |===================================================                                        |  57%  |                                                                                                   |====================================================                                       |  57%  |                                                                                                   |====================================================                                       |  58%  |                                                                                                   |=====================================================                                      |  58%  |                                                                                                   |=====================================================                                      |  59%  |                                                                                                   |======================================================                                     |  59%  |                                                                                                   |======================================================                                     |  60%  |                                                                                                   |=======================================================                                    |  60%  |                                                                                                   |=======================================================                                    |  61%  |                                                                                                   |========================================================                                   |  61%  |                                                                                                   |========================================================                                   |  62%  |                                                                                                   |=========================================================                                  |  62%  |                                                                                                   |=========================================================                                  |  63%  |                                                                                                   |==========================================================                                 |  63%  |                                                                                                   |==========================================================                                 |  64%  |                                                                                                   |===========================================================                                |  64%  |                                                                                                   |===========================================================                                |  65%  |                                                                                                   |============================================================                               |  65%  |                                                                                                   |============================================================                               |  66%  |                                                                                                   |=============================================================                              |  66%  |                                                                                                   |=============================================================                              |  67%  |                                                                                                   |=============================================================                              |  68%  |                                                                                                   |==============================================================                             |  68%  |                                                                                                   |==============================================================                             |  69%  |                                                                                                   |===============================================================                            |  69%  |                                                                                                   |===============================================================                            |  70%  |                                                                                                   |================================================================                           |  70%  |                                                                                                   |================================================================                           |  71%  |                                                                                                   |=================================================================                          |  71%  |                                                                                                   |=================================================================                          |  72%  |                                                                                                   |==================================================================                         |  72%  |                                                                                                   |==================================================================                         |  73%  |                                                                                                   |===================================================================                        |  73%  |                                                                                                   |===================================================================                        |  74%  |                                                                                                   |====================================================================                       |  74%  |                                                                                                   |====================================================================                       |  75%  |                                                                                                   |=====================================================================                      |  75%  |                                                                                                   |=====================================================================                      |  76%  |                                                                                                   |======================================================================                     |  76%  |                                                                                                   |======================================================================                     |  77%  |                                                                                                   |=======================================================================                    |  77%  |                                                                                                   |=======================================================================                    |  78%  |                                                                                                   |=======================================================================                    |  79%  |                                                                                                   |========================================================================                   |  79%  |                                                                                                   |========================================================================                   |  80%  |                                                                                                   |=========================================================================                  |  80%  |                                                                                                   |=========================================================================                  |  81%  |                                                                                                   |==========================================================================                 |  81%  |                                                                                                   |==========================================================================                 |  82%  |                                                                                                   |===========================================================================                |  82%  |                                                                                                   |===========================================================================                |  83%  |                                                                                                   |============================================================================               |  83%  |                                                                                                   |============================================================================               |  84%  |                                                                                                   |=============================================================================              |  84%  |                                                                                                   |=============================================================================              |  85%  |                                                                                                   |==============================================================================             |  85%  |                                                                                                   |==============================================================================             |  86%  |                                                                                                   |===============================================================================            |  86%  |                                                                                                   |===============================================================================            |  87%  |                                                                                                   |================================================================================           |  87%  |                                                                                                   |================================================================================           |  88%  |                                                                                                   |=================================================================================          |  88%  |                                                                                                   |=================================================================================          |  89%  |                                                                                                   |=================================================================================          |  90%  |                                                                                                   |==================================================================================         |  90%  |                                                                                                   |==================================================================================         |  91%  |                                                                                                   |===================================================================================        |  91%  |                                                                                                   |===================================================================================        |  92%  |                                                                                                   |====================================================================================       |  92%  |                                                                                                   |====================================================================================       |  93%  |                                                                                                   |=====================================================================================      |  93%  |                                                                                                   |=====================================================================================      |  94%  |                                                                                                   |======================================================================================     |  94%  |                                                                                                   |======================================================================================     |  95%  |                                                                                                   |=======================================================================================    |  95%  |                                                                                                   |=======================================================================================    |  96%  |                                                                                                   |========================================================================================   |  96%  |                                                                                                   |========================================================================================   |  97%  |                                                                                                   |=========================================================================================  |  97%  |                                                                                                   |=========================================================================================  |  98%  |                                                                                                   |========================================================================================== |  98%  |                                                                                                   |========================================================================================== |  99%  |                                                                                                   |===========================================================================================|  99%  |                                                                                                   |===========================================================================================| 100%
## Updated the locations of 1 out of 1 missing database files. 
## Updated the locations of 16048 out of 16048 missing binary files. 
## Updating files in events...
##   |                                                                                                                               |                                                                                                                       |   0%  |                                                                                                                               |=                                                                                                                      |   0%  |                                                                                                                               |=                                                                                                                      |   1%  |                                                                                                                               |==                                                                                                                     |   1%  |                                                                                                                               |==                                                                                                                     |   2%  |                                                                                                                               |===                                                                                                                    |   2%  |                                                                                                                               |===                                                                                                                    |   3%  |                                                                                                                               |====                                                                                                                   |   3%  |                                                                                                                               |====                                                                                                                   |   4%  |                                                                                                                               |=====                                                                                                                  |   4%  |                                                                                                                               |=====                                                                                                                  |   5%  |                                                                                                                               |======                                                                                                                 |   5%  |                                                                                                                               |=======                                                                                                                |   5%  |                                                                                                                               |=======                                                                                                                |   6%  |                                                                                                                               |========                                                                                                               |   6%  |                                                                                                                               |========                                                                                                               |   7%  |                                                                                                                               |=========                                                                                                              |   7%  |                                                                                                                               |=========                                                                                                              |   8%  |                                                                                                                               |==========                                                                                                             |   8%  |                                                                                                                               |==========                                                                                                             |   9%  |                                                                                                                               |===========                                                                                                            |   9%  |                                                                                                                               |===========                                                                                                            |  10%  |                                                                                                                               |============                                                                                                           |  10%  |                                                                                                                               |============                                                                                                           |  11%  |                                                                                                                               |=============                                                                                                          |  11%  |                                                                                                                               |==============                                                                                                         |  11%  |                                                                                                                               |==============                                                                                                         |  12%  |                                                                                                                               |===============                                                                                                        |  12%  |                                                                                                                               |===============                                                                                                        |  13%  |                                                                                                                               |================                                                                                                       |  13%  |                                                                                                                               |================                                                                                                       |  14%  |                                                                                                                               |=================                                                                                                      |  14%  |                                                                                                                               |=================                                                                                                      |  15%  |                                                                                                                               |==================                                                                                                     |  15%  |                                                                                                                               |==================                                                                                                     |  16%  |                                                                                                                               |===================                                                                                                    |  16%  |                                                                                                                               |====================                                                                                                   |  16%  |                                                                                                                               |====================                                                                                                   |  17%  |                                                                                                                               |=====================                                                                                                  |  17%  |                                                                                                                               |=====================                                                                                                  |  18%  |                                                                                                                               |======================                                                                                                 |  18%  |                                                                                                                               |======================                                                                                                 |  19%  |                                                                                                                               |=======================                                                                                                |  19%  |                                                                                                                               |=======================                                                                                                |  20%  |                                                                                                                               |========================                                                                                               |  20%  |                                                                                                                               |========================                                                                                               |  21%  |                                                                                                                               |=========================                                                                                              |  21%  |                                                                                                                               |==========================                                                                                             |  21%  |                                                                                                                               |==========================                                                                                             |  22%  |                                                                                                                               |===========================                                                                                            |  22%  |                                                                                                                               |===========================                                                                                            |  23%  |                                                                                                                               |============================                                                                                           |  23%  |                                                                                                                               |============================                                                                                           |  24%  |                                                                                                                               |=============================                                                                                          |  24%  |                                                                                                                               |=============================                                                                                          |  25%  |                                                                                                                               |==============================                                                                                         |  25%  |                                                                                                                               |==============================                                                                                         |  26%  |                                                                                                                               |===============================                                                                                        |  26%  |                                                                                                                               |================================                                                                                       |  26%  |                                                                                                                               |================================                                                                                       |  27%  |                                                                                                                               |=================================                                                                                      |  27%  |                                                                                                                               |=================================                                                                                      |  28%  |                                                                                                                               |==================================                                                                                     |  28%  |                                                                                                                               |==================================                                                                                     |  29%  |                                                                                                                               |===================================                                                                                    |  29%  |                                                                                                                               |===================================                                                                                    |  30%  |                                                                                                                               |====================================                                                                                   |  30%  |                                                                                                                               |====================================                                                                                   |  31%  |                                                                                                                               |=====================================                                                                                  |  31%  |                                                                                                                               |=====================================                                                                                  |  32%  |                                                                                                                               |======================================                                                                                 |  32%  |                                                                                                                               |=======================================                                                                                |  32%  |                                                                                                                               |=======================================                                                                                |  33%  |                                                                                                                               |========================================                                                                               |  33%  |                                                                                                                               |========================================                                                                               |  34%  |                                                                                                                               |=========================================                                                                              |  34%  |                                                                                                                               |=========================================                                                                              |  35%  |                                                                                                                               |==========================================                                                                             |  35%  |                                                                                                                               |==========================================                                                                             |  36%  |                                                                                                                               |===========================================                                                                            |  36%  |                                                                                                                               |===========================================                                                                            |  37%  |                                                                                                                               |============================================                                                                           |  37%  |                                                                                                                               |=============================================                                                                          |  37%  |                                                                                                                               |=============================================                                                                          |  38%  |                                                                                                                               |==============================================                                                                         |  38%  |                                                                                                                               |==============================================                                                                         |  39%  |                                                                                                                               |===============================================                                                                        |  39%  |                                                                                                                               |===============================================                                                                        |  40%  |                                                                                                                               |================================================                                                                       |  40%  |                                                                                                                               |================================================                                                                       |  41%  |                                                                                                                               |=================================================                                                                      |  41%  |                                                                                                                               |=================================================                                                                      |  42%  |                                                                                                                               |==================================================                                                                     |  42%  |                                                                                                                               |===================================================                                                                    |  42%  |                                                                                                                               |===================================================                                                                    |  43%  |                                                                                                                               |====================================================                                                                   |  43%  |                                                                                                                               |====================================================                                                                   |  44%  |                                                                                                                               |=====================================================                                                                  |  44%  |                                                                                                                               |=====================================================                                                                  |  45%  |                                                                                                                               |======================================================                                                                 |  45%  |                                                                                                                               |======================================================                                                                 |  46%  |                                                                                                                               |=======================================================                                                                |  46%  |                                                                                                                               |=======================================================                                                                |  47%  |                                                                                                                               |========================================================                                                               |  47%  |                                                                                                                               |=========================================================                                                              |  47%  |                                                                                                                               |=========================================================                                                              |  48%  |                                                                                                                               |==========================================================                                                             |  48%  |                                                                                                                               |==========================================================                                                             |  49%  |                                                                                                                               |===========================================================                                                            |  49%  |                                                                                                                               |===========================================================                                                            |  50%  |                                                                                                                               |============================================================                                                           |  50%  |                                                                                                                               |============================================================                                                           |  51%  |                                                                                                                               |=============================================================                                                          |  51%  |                                                                                                                               |=============================================================                                                          |  52%  |                                                                                                                               |==============================================================                                                         |  52%  |                                                                                                                               |==============================================================                                                         |  53%  |                                                                                                                               |===============================================================                                                        |  53%  |                                                                                                                               |================================================================                                                       |  53%  |                                                                                                                               |================================================================                                                       |  54%  |                                                                                                                               |=================================================================                                                      |  54%  |                                                                                                                               |=================================================================                                                      |  55%  |                                                                                                                               |==================================================================                                                     |  55%  |                                                                                                                               |==================================================================                                                     |  56%  |                                                                                                                               |===================================================================                                                    |  56%  |                                                                                                                               |===================================================================                                                    |  57%  |                                                                                                                               |====================================================================                                                   |  57%  |                                                                                                                               |====================================================================                                                   |  58%  |                                                                                                                               |=====================================================================                                                  |  58%  |                                                                                                                               |======================================================================                                                 |  58%  |                                                                                                                               |======================================================================                                                 |  59%  |                                                                                                                               |=======================================================================                                                |  59%  |                                                                                                                               |=======================================================================                                                |  60%  |                                                                                                                               |========================================================================                                               |  60%  |                                                                                                                               |========================================================================                                               |  61%  |                                                                                                                               |=========================================================================                                              |  61%  |                                                                                                                               |=========================================================================                                              |  62%  |                                                                                                                               |==========================================================================                                             |  62%  |                                                                                                                               |==========================================================================                                             |  63%  |                                                                                                                               |===========================================================================                                            |  63%  |                                                                                                                               |============================================================================                                           |  63%  |                                                                                                                               |============================================================================                                           |  64%  |                                                                                                                               |=============================================================================                                          |  64%  |                                                                                                                               |=============================================================================                                          |  65%  |                                                                                                                               |==============================================================================                                         |  65%  |                                                                                                                               |==============================================================================                                         |  66%  |                                                                                                                               |===============================================================================                                        |  66%  |                                                                                                                               |===============================================================================                                        |  67%  |                                                                                                                               |================================================================================                                       |  67%  |                                                                                                                               |================================================================================                                       |  68%  |                                                                                                                               |=================================================================================                                      |  68%  |                                                                                                                               |==================================================================================                                     |  68%  |                                                                                                                               |==================================================================================                                     |  69%  |                                                                                                                               |===================================================================================                                    |  69%  |                                                                                                                               |===================================================================================                                    |  70%  |                                                                                                                               |====================================================================================                                   |  70%  |                                                                                                                               |====================================================================================                                   |  71%  |                                                                                                                               |=====================================================================================                                  |  71%  |                                                                                                                               |=====================================================================================                                  |  72%  |                                                                                                                               |======================================================================================                                 |  72%  |                                                                                                                               |======================================================================================                                 |  73%  |                                                                                                                               |=======================================================================================                                |  73%  |                                                                                                                               |=======================================================================================                                |  74%  |                                                                                                                               |========================================================================================                               |  74%  |                                                                                                                               |=========================================================================================                              |  74%  |                                                                                                                               |=========================================================================================                              |  75%  |                                                                                                                               |==========================================================================================                             |  75%  |                                                                                                                               |==========================================================================================                             |  76%  |                                                                                                                               |===========================================================================================                            |  76%  |                                                                                                                               |===========================================================================================                            |  77%  |                                                                                                                               |============================================================================================                           |  77%  |                                                                                                                               |============================================================================================                           |  78%  |                                                                                                                               |=============================================================================================                          |  78%  |                                                                                                                               |=============================================================================================                          |  79%  |                                                                                                                               |==============================================================================================                         |  79%  |                                                                                                                               |===============================================================================================                        |  79%  |                                                                                                                               |===============================================================================================                        |  80%  |                                                                                                                               |================================================================================================                       |  80%  |                                                                                                                               |================================================================================================                       |  81%  |                                                                                                                               |=================================================================================================                      |  81%  |                                                                                                                               |=================================================================================================                      |  82%  |                                                                                                                               |==================================================================================================                     |  82%  |                                                                                                                               |==================================================================================================                     |  83%  |                                                                                                                               |===================================================================================================                    |  83%  |                                                                                                                               |===================================================================================================                    |  84%  |                                                                                                                               |====================================================================================================                   |  84%  |                                                                                                                               |=====================================================================================================                  |  84%  |                                                                                                                               |=====================================================================================================                  |  85%  |                                                                                                                               |======================================================================================================                 |  85%  |                                                                                                                               |======================================================================================================                 |  86%  |                                                                                                                               |=======================================================================================================                |  86%  |                                                                                                                               |=======================================================================================================                |  87%  |                                                                                                                               |========================================================================================================               |  87%  |                                                                                                                               |========================================================================================================               |  88%  |                                                                                                                               |=========================================================================================================              |  88%  |                                                                                                                               |=========================================================================================================              |  89%  |                                                                                                                               |==========================================================================================================             |  89%  |                                                                                                                               |===========================================================================================================            |  89%  |                                                                                                                               |===========================================================================================================            |  90%  |                                                                                                                               |============================================================================================================           |  90%  |                                                                                                                               |============================================================================================================           |  91%  |                                                                                                                               |=============================================================================================================          |  91%  |                                                                                                                               |=============================================================================================================          |  92%  |                                                                                                                               |==============================================================================================================         |  92%  |                                                                                                                               |==============================================================================================================         |  93%  |                                                                                                                               |===============================================================================================================        |  93%  |                                                                                                                               |===============================================================================================================        |  94%  |                                                                                                                               |================================================================================================================       |  94%  |                                                                                                                               |================================================================================================================       |  95%  |                                                                                                                               |=================================================================================================================      |  95%  |                                                                                                                               |==================================================================================================================     |  95%  |                                                                                                                               |==================================================================================================================     |  96%  |                                                                                                                               |===================================================================================================================    |  96%  |                                                                                                                               |===================================================================================================================    |  97%  |                                                                                                                               |====================================================================================================================   |  97%  |                                                                                                                               |====================================================================================================================   |  98%  |                                                                                                                               |=====================================================================================================================  |  98%  |                                                                                                                               |=====================================================================================================================  |  99%  |                                                                                                                               |====================================================================================================================== |  99%  |                                                                                                                               |====================================================================================================================== | 100%  |                                                                                                                               |=======================================================================================================================| 100%

Updated file paths to binaries in databases for F:/gcp_upload/2_Acoustic-Studies/CalCurCEAS_024/CalCurCEAS_2024_024_Filtered.rdata and F:/gcp_upload/2_Acoustic-Studies/CalCurCEAS_024/CalCurCEAS_2024_024_ch1.rdata

Create initial output Event Table CSV

To be used for manual scoring based on report figures.

# set up output data frame
evTable <- data.frame(drift = character(nEvents), id = character(nEvents), 
                      species = character(nEvents), numClicks = numeric(nEvents))
# populate with drift string and event names
evTable$drift <- paste0(params$mission, '_', params$drift)
evTable$id <- names(PAMpal::events(detsFilt))

# get all click data
allClks <- PAMpal::getClickData(detsFilt)
# get the number of clicks for each event
for (iEvent in c(1:nEventsFilt)){
  evTable$numClicks[iEvent] <- length(which(allClks$eventId == evTable$id[iEvent]))
}

# keep only rows/events with at least 200 clicks
evTable <- evTable[which(evTable$numClicks >199),]

# add column for keeping/removing based on median peak frequency
evTable$keep <- FALSE # set all to false, will mark keepers as TRUE in loop

# save event table as CSV
write.csv(evTable, file = file.path(params$path_dets,
                                    paste0('eventTable_', params$mission, '_',
                                           params$drift, '_', Sys.Date(),'.csv')))

3238 events (files) in drift. 540 events have at least 200 clicks. Additional events may be removed if the median peak frequency of all high SNR clicks is less than 6 kHz. The final number of events can be found at the very end of the report.

Load reference spectra, if specified

Load the reference spectra for plotting, if set with refSpecList.

# refSpecList is specified in YAML params. Can be one or multiple species
# for single species specify as char string without quotations e.g., refSpecPc
# for multiple species, specify with call to R and c()
#     e.g., !r c('meanSpecGm', 'refSpecPc_LLHARP')

refSpecs <- NULL
if (!is.null(refSpecList)){
  refSpecs = list()
  for (rs in refSpecList){
    refSpecs[[rs]] = read.csv(file.path(path_to_refSpec, paste0(rs, '.csv')))
  }
}

Event summaries

Loop through each detection event (n = 540) create plots and a table of summary statistics for click and whistle detections. This process uses AcousticStudy objects that have detection data for each event, and also pulls information from the Pamguard binaries associated with each AcousticStudy.

Click plots (other than the SNR plot) only show clicks with SNRs >= 15 dB.

for (iEvent in c(1:nEventsFilt)){
  # iEvent = 6 # for testing
  # ("pagebreak \n")
  
  # extract this event UID string
  eventList <- PAMpal::events(detsFilt)
  eventUID <- names(eventList)[iEvent]
  
  ###### summarize clicks ######
  cl <- clickSummary(detsFilt, eventUID) 
  
  if ((cl$nClicks > 199) && median(cl$goodClicks$peak, na.rm = TRUE) >= 6){
    # keep this in evTable
    evTable$keep[evTable$id == eventUID] <- TRUE
    evTable$medPeakFrq[evTable$id == eventUID] <- median(cl$goodClicks$peak, 
                                                         na.rm = TRUE)
    
    # set header for this event and print time
    cat('\n\n#### Event ID:   ', names(eventList)[iEvent], '\n')
    cat('Time:   ', format(eventList[[eventUID]]@ancillary$grouping$start, 
                           '%Y-%m-%d %H:%M%Z'), ' to ', 
        format(eventList[[eventUID]]@ancillary$grouping$end, '%Y-%m-%d %H:%M%Z'), 
        '\n')
    
    cat('\nEvent contains', nrow(PAMpal::getClickData(dets[[eventUID]])), 
        'original clicks,', paste0('**', cl$nClicks), 'valid clicks** after',
        'filtering.\n')
    cat('\n')
    
    ###### summarize whistles ######
    # wl <- whistleSummary(detsFilt, eventUID)
    # 
    # cat('\nEvent contains', paste0('**', wl$nWhistles), 'whistles**.\n')
    # cat('\n')
    
    ###### click plots and table ######
    
    cat('\n##### Click plots and table\n')
    cat('\n SNR histogram includes all filtered clicks. Other plots contain only', 
        'clicks with SNR >= 15 dB', paste0('(**n = ', cl$nGoodClicks, ' clicks**)'),
        '.\n')
    cat('\n')
    
    
    # if any clicks...
    if (cl$nClicks > 0){
      # histogram of all clicks and SNR >= 15 dB cut off
      xMax <- max(c(15, ceiling(max(cl$snr)) + 2)) # whichever is bigger
      if (any(!is.na(cl$snr))){
        hist(cl$snr, breaks = seq(from = floor(min(cl$snr)), 
                                  to = xMax, by = 2), 
             main = 'Click SNR', sub = '(all filtered clicks)', xlab = 'SNR')
        abline(v = 15, lty = 2, lwd = 2, col = 'red4')
      }
      
    }
    
    # if sufficient good clicks...
    if (cl$nGoodClicks > 0) {
      # histogram of click durations - good clicks only
      subStr <- paste0('(high SNR clicks, n=', cl$nGoodClicks, ')')
      hist(cl$goodClicks$duration, 
           breaks = seq(from = 0, to = max(cl$goodClicks$duration) + 100, 
                        by = 100), main = 'Click duration', sub = subStr,
           xlab = expression(paste('duration [', mu, 's]')))
      abline(v = median(cl$goodClicks$duration), lty = 2, lwd = 2, col = 'black')
      legend('topright', legend = 'median', lty = 2, lwd = 2, col = 'black')
      
      
      cat('\n')
      cat('\n')
      
      
      # Calculate and plot Concatenated and Mean Spectrum for clicks w/ max SNR > 15dB
      # NB: JLKM uses more exaggerated SNR (>40 dB) for BWs bc actual spectra may
      # be noisy for single clicks
      # reducing wl can give more accurate noise floor but 'smoother' spectrum
      # increasing wl will give more exact spectrum but may exclude too many 
      # clicks based on SNR (noise measure will overlap with click output; noise
      # is just measured as same wl from start of binary snippet and binaries 
      # binary snippets are v short)
      # Trial and error - 256 works ok for LLHARP data = 1.28 ms
      # NB: JLKM uses 500 for beaked whales with samp rate 288k
      avgSpec <- PAMpal::calculateAverageSpectra(detsFilt, evNum = eventUID, wl = 256, 
                                         channel = params$channelNum, norm = TRUE,
                                         noise = TRUE, sort = TRUE, snr = 15, 
                                         plot = c(TRUE, FALSE))
      # concatenated spectrogram will get plotted within calculation
      
      # avg spectrum plots separately (bc adding stuff)
      if (!is.null(avgSpec)) {
        # Peak freq as calculated by calculateAvgerageSpectra -for subtitle
        peakFreq <- round(avgSpec$freq[which.max(avgSpec$avgSpec)]/1000, 2)
        
        plot(1, type = 'n', xlim = c(0, 100), ylim = c(min(avgSpec$avgSpec), 0), 
             xlab = 'Frequency (kHz)', ylab = 'Normalized Magnitude (dB)', 
             main = 'Average Spectrum', sub = paste0('Peak: ', peakFreq, 'kHz'))
        # add grid lines for frequency at 10 kHz intervals
        for (iline in ((0:20)*10)) {lines(c(iline,iline), c(-100,10), col="gray")}
        # add template spectra
        if (length(refSpecs) > 0){
          rsCols <- rsPalette[1:length(refSpecs)]
          for (rs in 1:length(refSpecs)){
            rsTmp <- refSpecList[rs]
            rsNorm <- refSpecs[[rsTmp]]
            rsMax <- max(rsNorm$dB)
            rsNorm$dBNorm <- rsNorm$dB - rsMax
            lines(rsNorm$frq, rsNorm$dBNorm, col = rsCols[rs], lwd = 2)
          }
        }
        
        # plot noise
        lines(avgSpec$freq/1000, avgSpec$avgNoise, lty = 3, lwd = 2)
        # plot avg spectrum
        lines(avgSpec$freq/1000, avgSpec$avgSpec, lty = 2, lwd = 3)
        # also plot median spectrum
        medSpec <- 20*log10(apply(avgSpec$allSpec, 1, function(y) {
          median(10^(y/20), na.rm = TRUE)}))
        medSpecNorm <- medSpec - max(medSpec, na.rm = TRUE)
        lines(avgSpec$freq/1000, medSpecNorm, lty = 1, lwd = 3)
        
        # add legend
        if (length(refSpecs) > 0){
          legend(x = 'topright', c(refSpecSp, 'Avg.', 'Med.', 'Noise'),
                 lty = c(rep(1, length(refSpecs)), 2, 1, 3),
                 lwd = c(rep(1, length(refSpecs)), 2, 3, 2),
                 col = c(rsCols, 'black', 'black', 'black'), cex = 0.8)
        } else if (length(refSpecs) == 0){
          legend(x = 'topright', c('Avg.', 'Med.', 'Noise'),
                 lty = c(2, 1, 3), lwd = c(2, 3, 2),
                 col = c('black', 'black', 'black'), cex = 0.8)
        }
      }
      
      
      # NB: JLKM BW approach has additional plots here:
      # IPI
      # Waveform of strongest click
      # Wigner plot
      # We are not including those here because not really useful for FKW, but if
      # interested in adding back in, see:
      #       https://github.com/jlkeating/PAMGuard_Event_Code
      
      
      cat('\n')
      cat('\n')
      
      
      # create median stats table for clicks with -15 dB TK noise cut off
      cat('\n\n Median statistics for', cl$nGoodClicks, 'high SNR clicks with', 
          'SNR >= 15 dB.')
      cat('\n')
      
      cat(knitr::kable(cl$mt, format = 'html', caption = '', align = 'l', 
                       row.names = FALSE) %>%
            kableExtra::kable_styling(bootstrap_options = c('basic', 'condensed'),
                          full_width = F))
      
    }  else { # no good clicks so no summary plots/table
      cat('\nNo clicks of sufficient SNR to plot or summarize.\n')
    }
    
    
    ###### whistle plots and table ######
    # 
    # cat('\n##### Whistle plots and table\n')
    # 
    # # if whistles present ...
    # if (wl$nWhistles > 0) {
    #   # create median stats table for all whistles
    #   # cat('\n\n Median statistics for', wl$nWhistles, 'whistles.')
    #   # cat('\n')
    #   
    #   # plot whistle contours
    #   # map the needed binary files
    #   binFiles <- dets@events[[eventUID]]@files$binaries
    #   wmFileIdx <- grep(pattern = '^.*WhistlesMoans_Whistle_and_Moan.*\\.pgdf$',
    #                     binFiles)
    #   wmFiles <- dets@events[[eventUID]]@files$binaries[wmFileIdx]
    #   
    #   # load them
    #   whBin <- loadMultiBinaries(wmFiles)
    #   # trim to just the event time
    #   whBinEv <- whBin[names(whBin) %in%
    #                      detsFilt[[eventUID]]$Whistle_and_Moan_Detector$UID]
    #   
    #   # #plot - ggplot version/functionized
    #   # pc <- plotContours(whBinEv)
    #   # # print(pc)
    #   # pc + ggtitle(eventUID)
    #   # 
    #   
    #   # get plot limits
    #   # xMax <- 0
    #   # yMax <- 0
    #   # for (wc in 1:length(names(whBinEv))){
    #   #   df <- data.frame(time = whBinEv[[wc]]$time - whBinEv[[wc]]$time[1],
    #   #                    freq = whBinEv[[wc]]$freq/1000)
    #   #   xMaxTmp <- max(df$time)
    #   #   yMaxTmp <- max(df$freq)
    #   #   if (xMaxTmp > xMax){xMax <- xMaxTmp}
    #   #   if (yMaxTmp > yMax){yMax <- yMaxTmp}
    #   # }
    #   # or use standard max lims
    #   xMax <- 1.5
    #   yMax <- 20
    #   
    #   # plot each line
    #   plot(1, type = 'n', xlim = c(0, round(xMax,2)), ylim = c(0, round(yMax,-1)), 
    #        xlab = 'Time (s)', ylab = 'Frequency (kHz)', 
    #        main = 'Whistle Contours')
    #   # add grid lines for frequency at 0.125 s and 5 kHz intervals
    #   for (iline in (seq(0,2,0.125))) {lines(c(iline,iline), c(-10,60),
    #                                          col="lightgray")}
    #   for (iline in (seq(0,50,5))) {lines(c(-0.5,2.5), c(iline,iline),
    #                                       col="lightgray")}
    #   # loop through each contour
    #   for (wc in 1:length(names(whBinEv))){
    #     df <- data.frame(time = whBinEv[[wc]]$time - whBinEv[[wc]]$time[1],
    #                      freq = whBinEv[[wc]]$freq/1000)
    #     lines(df$time, df$freq, col = rgb(0,0,0,0.4))
    #   }
    #   
    #   # plot histogram of median frequency
    #   hist(wl$wh$freqMedian/1000, 
    #        breaks = seq(0, ceiling(max(wl$wh$freqMedian/1000)) + 1, 1),
    #        main = 'Histogram of whistle median frequency', 
    #        xlab = 'Median frequency (kHz)')
    #   
    #   cat('\n')
    #   cat('\n')
    #   
    #   cat('Median statistics for n = ', wl$nWhistles, 'whistles.\n')
    #   # create median stats table for all whistles
    #   cat(knitr::kable(wl$mt, format = 'html', caption = '', align = 'l', 
    #                    row.names = FALSE) %>%
    #         kable_styling(bootstrap_options = c('basic', 'condensed'),
    #                       full_width = F))
    #   
    # } else {
    #   cat('\nNo whistles present.\n')
    # }
    
    cat('\n')
    cat('\n\n --- \n\n')
    cat('\n')
  }# num clicks/peak freq check 
} # loop

Event ID: 8595.241111020203.wav

Time: 2024-11-11 02:02UTC to 2024-11-11 02:08UTC

Event contains 932 original clicks, 466 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 303 clicks) .

Median statistics for 303 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.15
Median 10dB Center Frequency [kHz] 6.39
Median 3dB Bandwidth [kHz] (lower-upper) 1.23 (5.34 - 6.97)
Median 10dB Bandwidth [kHz] (lower-upper) 4.01 (3.98 - 8.45)
Median duration [μs] (25-75 percentile) 185 (23 - 1000)

Event ID: 8595.241113233204.wav

Time: 2024-11-13 23:32UTC to 2024-11-13 23:38UTC

Event contains 564 original clicks, 282 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 52 clicks) .

Median statistics for 52 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 12
Median 3dB Center Frequency [kHz] 10.2
Median 10dB Center Frequency [kHz] 10.1
Median 3dB Bandwidth [kHz] (lower-upper) 0.632 (9.98 - 10.5)
Median 10dB Bandwidth [kHz] (lower-upper) 1.33 (9.45 - 10.8)
Median duration [μs] (25-75 percentile) 77 (0 - 149)

Event ID: 8595.241113234404.wav

Time: 2024-11-13 23:44UTC to 2024-11-13 23:50UTC

Event contains 422 original clicks, 211 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 62 clicks) .

Median statistics for 62 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 11.8
Median 3dB Center Frequency [kHz] 10.2
Median 10dB Center Frequency [kHz] 10.1
Median 3dB Bandwidth [kHz] (lower-upper) 0.639 (9.81 - 10.7)
Median 10dB Bandwidth [kHz] (lower-upper) 1.47 (9.44 - 11.2)
Median duration [μs] (25-75 percentile) 14 (0 - 100)

Event ID: 8595.241114073804.wav

Time: 2024-11-14 07:38UTC to 2024-11-14 07:44UTC

Event contains 548 original clicks, 274 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 207 clicks) .

Median statistics for 207 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 11.6
Median 3dB Center Frequency [kHz] 8.44
Median 10dB Center Frequency [kHz] 8.84
Median 3dB Bandwidth [kHz] (lower-upper) 1.38 (7.58 - 9.35)
Median 10dB Bandwidth [kHz] (lower-upper) 3.31 (6.42 - 10.5)
Median duration [μs] (25-75 percentile) 180 (100 - 347)

Event ID: 8595.241114074404.wav

Time: 2024-11-14 07:44UTC to 2024-11-14 07:50UTC

Event contains 586 original clicks, 293 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 211 clicks) .

Median statistics for 211 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 6.73
Median 10dB Center Frequency [kHz] 6.55
Median 3dB Bandwidth [kHz] (lower-upper) 1.35 (6.07 - 7.37)
Median 10dB Bandwidth [kHz] (lower-upper) 3.28 (4.99 - 9.1)
Median duration [μs] (25-75 percentile) 237 (100 - 1000)

Event ID: 8595.241115221404.wav

Time: 2024-11-15 22:14UTC to 2024-11-15 22:20UTC

Event contains 4442 original clicks, 2221 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1304 clicks) .

Median statistics for 1304 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.6
Median 10dB Center Frequency [kHz] 7.28
Median 3dB Bandwidth [kHz] (lower-upper) 1.37 (5.74 - 7.49)
Median 10dB Bandwidth [kHz] (lower-upper) 5.14 (4.11 - 10.1)
Median duration [μs] (25-75 percentile) 227 (31 - 1000)

Event ID: 8595.241116012004.wav

Time: 2024-11-16 01:20UTC to 2024-11-16 01:26UTC

Event contains 1670 original clicks, 835 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 333 clicks) .

Median statistics for 333 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.93
Median 10dB Center Frequency [kHz] 6.67
Median 3dB Bandwidth [kHz] (lower-upper) 1.25 (5.04 - 6.66)
Median 10dB Bandwidth [kHz] (lower-upper) 5.01 (3.47 - 9.43)
Median duration [μs] (25-75 percentile) 86 (29 - 495)

Event ID: 8595.241117173205.wav

Time: 2024-11-17 17:32UTC to 2024-11-17 17:38UTC

Event contains 4188 original clicks, 2094 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1607 clicks) .

Median statistics for 1607 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8
Median 3dB Center Frequency [kHz] 7.9
Median 10dB Center Frequency [kHz] 8.74
Median 3dB Bandwidth [kHz] (lower-upper) 1.46 (6.86 - 8.74)
Median 10dB Bandwidth [kHz] (lower-upper) 6.04 (4.47 - 12.1)
Median duration [μs] (25-75 percentile) 819 (262 - 1283)

Event ID: 8595.241117173805.wav

Time: 2024-11-17 17:38UTC to 2024-11-17 17:44UTC

Event contains 4514 original clicks, 2257 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1717 clicks) .

Median statistics for 1717 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8
Median 3dB Center Frequency [kHz] 7.62
Median 10dB Center Frequency [kHz] 7.9
Median 3dB Bandwidth [kHz] (lower-upper) 1.34 (6.75 - 8.41)
Median 10dB Bandwidth [kHz] (lower-upper) 4.78 (5.04 - 10.5)
Median duration [μs] (25-75 percentile) 378 (23 - 1000)

Event ID: 8595.241118184405.wav

Time: 2024-11-18 18:44UTC to 2024-11-18 18:50UTC

Event contains 902 original clicks, 451 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 191 clicks) .

Median statistics for 191 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.21
Median 10dB Center Frequency [kHz] 7.25
Median 3dB Bandwidth [kHz] (lower-upper) 1.06 (5.32 - 7.06)
Median 10dB Bandwidth [kHz] (lower-upper) 4.19 (4.03 - 10.3)
Median duration [μs] (25-75 percentile) 162 (29 - 1000)

Event ID: 8595.241121015006.wav

Time: 2024-11-21 01:50UTC to 2024-11-21 01:56UTC

Event contains 8664 original clicks, 4332 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2588 clicks) .

Median statistics for 2588 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.68
Median 10dB Center Frequency [kHz] 5.9
Median 3dB Bandwidth [kHz] (lower-upper) 1.31 (4.93 - 6.46)
Median 10dB Bandwidth [kHz] (lower-upper) 3.94 (3.68 - 7.97)
Median duration [μs] (25-75 percentile) 850 (282 - 1511)

Event ID: 8595.241121015606.wav

Time: 2024-11-21 01:56UTC to 2024-11-21 02:02UTC

Event contains 5246 original clicks, 2623 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1621 clicks) .

Median statistics for 1621 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.31
Median 10dB Center Frequency [kHz] 6.92
Median 3dB Bandwidth [kHz] (lower-upper) 1.5 (5.38 - 7.17)
Median 10dB Bandwidth [kHz] (lower-upper) 5.12 (4.02 - 9.6)
Median duration [μs] (25-75 percentile) 1011 (404 - 1562)

Event ID: 8595.241121030806.wav

Time: 2024-11-21 03:08UTC to 2024-11-21 03:14UTC

Event contains 424 original clicks, 212 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 147 clicks) .

Median statistics for 147 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 10
Median 3dB Center Frequency [kHz] 9.26
Median 10dB Center Frequency [kHz] 8.86
Median 3dB Bandwidth [kHz] (lower-upper) 1.3 (8.42 - 9.9)
Median 10dB Bandwidth [kHz] (lower-upper) 3.42 (6.55 - 11.7)
Median duration [μs] (25-75 percentile) 60 (0 - 289)

Event ID: 8595.241121063806.wav

Time: 2024-11-21 06:38UTC to 2024-11-21 06:44UTC

Event contains 486 original clicks, 243 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 118 clicks) .

Median statistics for 118 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 12
Median 3dB Center Frequency [kHz] 11.1
Median 10dB Center Frequency [kHz] 11.8
Median 3dB Bandwidth [kHz] (lower-upper) 1.36 (10.5 - 12.1)
Median 10dB Bandwidth [kHz] (lower-upper) 5.77 (8.48 - 15.3)
Median duration [μs] (25-75 percentile) 228 (16 - 1000)

Event ID: 8595.241121145006.wav

Time: 2024-11-21 14:50UTC to 2024-11-21 14:56UTC

Event contains 528 original clicks, 264 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 83 clicks) .

Median statistics for 83 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 11.2
Median 3dB Center Frequency [kHz] 11.1
Median 10dB Center Frequency [kHz] 11.3
Median 3dB Bandwidth [kHz] (lower-upper) 0.694 (10.6 - 11.6)
Median 10dB Bandwidth [kHz] (lower-upper) 1.93 (10.1 - 12.2)
Median duration [μs] (25-75 percentile) 94 (25 - 421)

Event ID: 8595.241121145606.wav

Time: 2024-11-21 14:56UTC to 2024-11-21 15:02UTC

Event contains 714 original clicks, 357 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 51 clicks) .

Median statistics for 51 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 12.8
Median 3dB Center Frequency [kHz] 12.2
Median 10dB Center Frequency [kHz] 12.4
Median 3dB Bandwidth [kHz] (lower-upper) 0.592 (11.8 - 12.6)
Median 10dB Bandwidth [kHz] (lower-upper) 1.22 (10.9 - 13.2)
Median duration [μs] (25-75 percentile) 149 (36 - 1000)

Event ID: 8595.241121150206.wav

Time: 2024-11-21 15:02UTC to 2024-11-21 15:08UTC

Event contains 994 original clicks, 497 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 96 clicks) .

Median statistics for 96 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 11.2
Median 3dB Center Frequency [kHz] 10.6
Median 10dB Center Frequency [kHz] 10.8
Median 3dB Bandwidth [kHz] (lower-upper) 0.668 (10.2 - 11.3)
Median 10dB Bandwidth [kHz] (lower-upper) 1.67 (9.64 - 12)
Median duration [μs] (25-75 percentile) 531 (100 - 1000)

Event ID: 8595.241121150806.wav

Time: 2024-11-21 15:08UTC to 2024-11-21 15:14UTC

Event contains 1240 original clicks, 620 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 210 clicks) .

Median statistics for 210 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 10.8
Median 3dB Center Frequency [kHz] 10.8
Median 10dB Center Frequency [kHz] 11
Median 3dB Bandwidth [kHz] (lower-upper) 0.713 (10.4 - 11.4)
Median 10dB Bandwidth [kHz] (lower-upper) 2.24 (9.57 - 12.5)
Median duration [μs] (25-75 percentile) 119 (0 - 1000)

Event ID: 8595.241121151406.wav

Time: 2024-11-21 15:14UTC to 2024-11-21 15:20UTC

Event contains 754 original clicks, 377 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 105 clicks) .

Median statistics for 105 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 11.2
Median 3dB Center Frequency [kHz] 10.4
Median 10dB Center Frequency [kHz] 10.4
Median 3dB Bandwidth [kHz] (lower-upper) 0.829 (9.93 - 10.8)
Median 10dB Bandwidth [kHz] (lower-upper) 2.74 (8.19 - 11.7)
Median duration [μs] (25-75 percentile) 146 (0 - 1000)

Event ID: 8595.241121152006.wav

Time: 2024-11-21 15:20UTC to 2024-11-21 15:26UTC

Event contains 574 original clicks, 287 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 90 clicks) .

Median statistics for 90 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 9.2
Median 3dB Center Frequency [kHz] 9.94
Median 10dB Center Frequency [kHz] 10.4
Median 3dB Bandwidth [kHz] (lower-upper) 1.07 (9.34 - 10.8)
Median 10dB Bandwidth [kHz] (lower-upper) 2.86 (8.16 - 11.1)
Median duration [μs] (25-75 percentile) 202 (3 - 1000)

Event ID: 8595.241121152606.wav

Time: 2024-11-21 15:26UTC to 2024-11-21 15:32UTC

Event contains 778 original clicks, 389 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 69 clicks) .

Median statistics for 69 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 11.6
Median 3dB Center Frequency [kHz] 11.2
Median 10dB Center Frequency [kHz] 11.2
Median 3dB Bandwidth [kHz] (lower-upper) 0.6 (10.8 - 11.6)
Median 10dB Bandwidth [kHz] (lower-upper) 1.23 (10.4 - 12)
Median duration [μs] (25-75 percentile) 39 (0 - 414)

Event ID: 8595.241121153206.wav

Time: 2024-11-21 15:32UTC to 2024-11-21 15:38UTC

Event contains 852 original clicks, 426 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 82 clicks) .

Median statistics for 82 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 10.8
Median 3dB Center Frequency [kHz] 10.8
Median 10dB Center Frequency [kHz] 10.8
Median 3dB Bandwidth [kHz] (lower-upper) 0.773 (10.3 - 11.3)
Median 10dB Bandwidth [kHz] (lower-upper) 1.97 (9.74 - 12.1)
Median duration [μs] (25-75 percentile) 250 (100 - 1000)

Event ID: 8595.241121153806.wav

Time: 2024-11-21 15:38UTC to 2024-11-21 15:44UTC

Event contains 860 original clicks, 430 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 154 clicks) .

Median statistics for 154 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 10.4
Median 3dB Center Frequency [kHz] 10
Median 10dB Center Frequency [kHz] 10.2
Median 3dB Bandwidth [kHz] (lower-upper) 0.983 (9.45 - 10.5)
Median 10dB Bandwidth [kHz] (lower-upper) 3.57 (7.82 - 11.9)
Median duration [μs] (25-75 percentile) 298 (100 - 1000)

Event ID: 8595.241121154406.wav

Time: 2024-11-21 15:44UTC to 2024-11-21 15:50UTC

Event contains 938 original clicks, 469 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 157 clicks) .

Median statistics for 157 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8.8
Median 3dB Center Frequency [kHz] 9.66
Median 10dB Center Frequency [kHz] 9.6
Median 3dB Bandwidth [kHz] (lower-upper) 0.969 (9.24 - 10.1)
Median 10dB Bandwidth [kHz] (lower-upper) 3.01 (7.99 - 10.9)
Median duration [μs] (25-75 percentile) 159 (3 - 1000)

Event ID: 8595.241121155006.wav

Time: 2024-11-21 15:50UTC to 2024-11-21 15:56UTC

Event contains 680 original clicks, 340 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 107 clicks) .

Median statistics for 107 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 9.2
Median 3dB Center Frequency [kHz] 9.02
Median 10dB Center Frequency [kHz] 9.22
Median 3dB Bandwidth [kHz] (lower-upper) 0.788 (8.73 - 10)
Median 10dB Bandwidth [kHz] (lower-upper) 2.27 (8.09 - 10.5)
Median duration [μs] (25-75 percentile) 203 (3 - 1000)

Event ID: 8595.241121155606.wav

Time: 2024-11-21 15:56UTC to 2024-11-21 16:02UTC

Event contains 540 original clicks, 270 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 96 clicks) .

Median statistics for 96 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 9.8
Median 3dB Center Frequency [kHz] 9.7
Median 10dB Center Frequency [kHz] 9.56
Median 3dB Bandwidth [kHz] (lower-upper) 0.96 (9.21 - 10.1)
Median 10dB Bandwidth [kHz] (lower-upper) 2.05 (8.83 - 10.5)
Median duration [μs] (25-75 percentile) 126 (0 - 1000)

Event ID: 8595.241121160206.wav

Time: 2024-11-21 16:02UTC to 2024-11-21 16:08UTC

Event contains 774 original clicks, 387 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 112 clicks) .

Median statistics for 112 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 11.2
Median 3dB Center Frequency [kHz] 11
Median 10dB Center Frequency [kHz] 10.9
Median 3dB Bandwidth [kHz] (lower-upper) 0.599 (10.7 - 11.3)
Median 10dB Bandwidth [kHz] (lower-upper) 1.28 ( 9.8 - 11.8)
Median duration [μs] (25-75 percentile) 30 (0 - 494)

Event ID: 8595.241121160806.wav

Time: 2024-11-21 16:08UTC to 2024-11-21 16:14UTC

Event contains 732 original clicks, 366 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 63 clicks) .

Median statistics for 63 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 12
Median 3dB Center Frequency [kHz] 11.4
Median 10dB Center Frequency [kHz] 11.1
Median 3dB Bandwidth [kHz] (lower-upper) 0.664 (10.7 - 11.7)
Median 10dB Bandwidth [kHz] (lower-upper) 1.66 ( 9.8 - 12.2)
Median duration [μs] (25-75 percentile) 70 (18 - 418)

Event ID: 8595.241121161406.wav

Time: 2024-11-21 16:14UTC to 2024-11-21 16:20UTC

Event contains 790 original clicks, 395 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 101 clicks) .

Median statistics for 101 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 12.8
Median 3dB Center Frequency [kHz] 11.4
Median 10dB Center Frequency [kHz] 11.3
Median 3dB Bandwidth [kHz] (lower-upper) 0.739 ( 11 - 11.7)
Median 10dB Bandwidth [kHz] (lower-upper) 2.3 (9.31 - 12.5)
Median duration [μs] (25-75 percentile) 250 (50 - 1000)

Event ID: 8595.241121162006.wav

Time: 2024-11-21 16:20UTC to 2024-11-21 16:26UTC

Event contains 420 original clicks, 210 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 51 clicks) .

Median statistics for 51 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 11.6
Median 3dB Center Frequency [kHz] 11.9
Median 10dB Center Frequency [kHz] 11.9
Median 3dB Bandwidth [kHz] (lower-upper) 0.621 (11.6 - 12.1)
Median 10dB Bandwidth [kHz] (lower-upper) 1.6 (10.7 - 12.5)
Median duration [μs] (25-75 percentile) 136 (29 - 1000)

Event ID: 8595.241121162606.wav

Time: 2024-11-21 16:26UTC to 2024-11-21 16:32UTC

Event contains 478 original clicks, 239 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 86 clicks) .

Median statistics for 86 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 11.4
Median 3dB Center Frequency [kHz] 10.9
Median 10dB Center Frequency [kHz] 12
Median 3dB Bandwidth [kHz] (lower-upper) 2.04 (9.64 - 12)
Median 10dB Bandwidth [kHz] (lower-upper) 8.26 (6.32 - 16.8)
Median duration [μs] (25-75 percentile) 693 (166 - 1135)

Event ID: 8595.241121163206.wav

Time: 2024-11-21 16:32UTC to 2024-11-21 16:38UTC

Event contains 564 original clicks, 282 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 70 clicks) .

Median statistics for 70 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 11.2
Median 3dB Center Frequency [kHz] 10.5
Median 10dB Center Frequency [kHz] 10.6
Median 3dB Bandwidth [kHz] (lower-upper) 0.869 (9.71 - 11.5)
Median 10dB Bandwidth [kHz] (lower-upper) 2.81 (8.75 - 13)
Median duration [μs] (25-75 percentile) 345 (50 - 1000)

Event ID: 8595.241121163806.wav

Time: 2024-11-21 16:38UTC to 2024-11-21 16:44UTC

Event contains 842 original clicks, 421 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 190 clicks) .

Median statistics for 190 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 9.6
Median 3dB Center Frequency [kHz] 9.76
Median 10dB Center Frequency [kHz] 10.4
Median 3dB Bandwidth [kHz] (lower-upper) 1.01 (8.52 - 10.3)
Median 10dB Bandwidth [kHz] (lower-upper) 3.05 (6.54 - 11.6)
Median duration [μs] (25-75 percentile) 437 (16 - 1181)

Event ID: 8595.241121165606.wav

Time: 2024-11-21 16:56UTC to 2024-11-21 17:02UTC

Event contains 780 original clicks, 390 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 107 clicks) .

Median statistics for 107 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 7.85
Median 10dB Center Frequency [kHz] 7.62
Median 3dB Bandwidth [kHz] (lower-upper) 0.927 (7.55 - 8.26)
Median 10dB Bandwidth [kHz] (lower-upper) 2.25 (5.75 - 9.23)
Median duration [μs] (25-75 percentile) 501 (100 - 1436)

Event ID: 8595.241121170206.wav

Time: 2024-11-21 17:02UTC to 2024-11-21 17:08UTC

Event contains 742 original clicks, 371 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 112 clicks) .

Median statistics for 112 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8.8
Median 3dB Center Frequency [kHz] 8.56
Median 10dB Center Frequency [kHz] 8.79
Median 3dB Bandwidth [kHz] (lower-upper) 0.818 (8.17 - 8.89)
Median 10dB Bandwidth [kHz] (lower-upper) 2.17 (7.83 - 9.75)
Median duration [μs] (25-75 percentile) 280 (0 - 1000)

Event ID: 8595.241121172006.wav

Time: 2024-11-21 17:20UTC to 2024-11-21 17:26UTC

Event contains 1148 original clicks, 574 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 158 clicks) .

Median statistics for 158 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 8.8
Median 10dB Center Frequency [kHz] 8.87
Median 3dB Bandwidth [kHz] (lower-upper) 0.754 (8.57 - 9.29)
Median 10dB Bandwidth [kHz] (lower-upper) 1.97 (7.91 - 10.1)
Median duration [μs] (25-75 percentile) 469 (35 - 1279)

Event ID: 8595.241122005006.wav

Time: 2024-11-22 00:50UTC to 2024-11-22 00:56UTC

Event contains 1616 original clicks, 808 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 663 clicks) .

Median statistics for 663 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.95
Median 10dB Center Frequency [kHz] 5.67
Median 3dB Bandwidth [kHz] (lower-upper) 1.22 (5.33 - 6.57)
Median 10dB Bandwidth [kHz] (lower-upper) 2.9 (4.17 - 7.23)
Median duration [μs] (25-75 percentile) 1035 (420 - 1569)

Event ID: 8595.241122013806.wav

Time: 2024-11-22 01:38UTC to 2024-11-22 01:44UTC

Event contains 1286 original clicks, 643 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 525 clicks) .

Median statistics for 525 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.76
Median 10dB Center Frequency [kHz] 5.83
Median 3dB Bandwidth [kHz] (lower-upper) 1.09 (5.17 - 6.34)
Median 10dB Bandwidth [kHz] (lower-upper) 2.59 (4.16 - 7.41)
Median duration [μs] (25-75 percentile) 1676 (1056 - 2273)

Event ID: 8595.241122014406.wav

Time: 2024-11-22 01:44UTC to 2024-11-22 01:50UTC

Event contains 740 original clicks, 370 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 311 clicks) .

Median statistics for 311 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.53
Median 10dB Center Frequency [kHz] 6.49
Median 3dB Bandwidth [kHz] (lower-upper) 1.19 ( 5.9 - 7.1)
Median 10dB Bandwidth [kHz] (lower-upper) 2.67 (5.21 - 7.9)
Median duration [μs] (25-75 percentile) 1324 (1000 - 2049)

Event ID: 8595.241122015006.wav

Time: 2024-11-22 01:50UTC to 2024-11-22 01:56UTC

Event contains 732 original clicks, 366 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 292 clicks) .

Median statistics for 292 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 6.07
Median 10dB Center Frequency [kHz] 6.07
Median 3dB Bandwidth [kHz] (lower-upper) 1.26 (5.51 - 6.77)
Median 10dB Bandwidth [kHz] (lower-upper) 3.01 (4.59 - 7.72)
Median duration [μs] (25-75 percentile) 1225 (495 - 2074)

Event ID: 8595.241122015606.wav

Time: 2024-11-22 01:56UTC to 2024-11-22 02:02UTC

Event contains 524 original clicks, 262 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 208 clicks) .

Median statistics for 208 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.62
Median 10dB Center Frequency [kHz] 5.77
Median 3dB Bandwidth [kHz] (lower-upper) 1.15 (5.05 - 6.33)
Median 10dB Bandwidth [kHz] (lower-upper) 2.55 ( 4 - 7.37)
Median duration [μs] (25-75 percentile) 1157 (370 - 2081)

Event ID: 8595.241122030806.wav

Time: 2024-11-22 03:08UTC to 2024-11-22 03:14UTC

Event contains 1362 original clicks, 681 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 421 clicks) .

Median statistics for 421 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 5.71
Median 10dB Center Frequency [kHz] 6
Median 3dB Bandwidth [kHz] (lower-upper) 0.941 (5.32 - 6.28)
Median 10dB Bandwidth [kHz] (lower-upper) 2.62 (4.33 - 7.63)
Median duration [μs] (25-75 percentile) 1580 (1000 - 2336)

Event ID: 8595.241122031406.wav

Time: 2024-11-22 03:14UTC to 2024-11-22 03:20UTC

Event contains 422 original clicks, 211 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 155 clicks) .

Median statistics for 155 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.73
Median 10dB Center Frequency [kHz] 6.86
Median 3dB Bandwidth [kHz] (lower-upper) 1.05 ( 6.1 - 7.21)
Median 10dB Bandwidth [kHz] (lower-upper) 3.19 (4.68 - 8.4)
Median duration [μs] (25-75 percentile) 1319 (1000 - 2169)

Event ID: 8595.241122034406.wav

Time: 2024-11-22 03:44UTC to 2024-11-22 03:50UTC

Event contains 660 original clicks, 330 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 221 clicks) .

Median statistics for 221 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.04
Median 10dB Center Frequency [kHz] 6.44
Median 3dB Bandwidth [kHz] (lower-upper) 1.04 (5.49 - 6.86)
Median 10dB Bandwidth [kHz] (lower-upper) 3.35 (4.57 - 8.27)
Median duration [μs] (25-75 percentile) 1170 (433 - 1950)

Event ID: 8595.241122040806.wav

Time: 2024-11-22 04:08UTC to 2024-11-22 04:14UTC

Event contains 3426 original clicks, 1713 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1290 clicks) .

Median statistics for 1290 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.26
Median 10dB Center Frequency [kHz] 7.43
Median 3dB Bandwidth [kHz] (lower-upper) 1.14 (6.53 - 7.93)
Median 10dB Bandwidth [kHz] (lower-upper) 3.39 (5.04 - 9.29)
Median duration [μs] (25-75 percentile) 1255 (360 - 2168)

Event ID: 8595.241122041406.wav

Time: 2024-11-22 04:14UTC to 2024-11-22 04:20UTC

Event contains 7418 original clicks, 3709 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2811 clicks) .

Median statistics for 2811 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.37
Median 10dB Center Frequency [kHz] 7.64
Median 3dB Bandwidth [kHz] (lower-upper) 1.19 ( 6.6 - 8.07)
Median 10dB Bandwidth [kHz] (lower-upper) 3.7 (5.46 - 9.49)
Median duration [μs] (25-75 percentile) 1606 (1000 - 2304)

Event ID: 8595.241122042006.wav

Time: 2024-11-22 04:20UTC to 2024-11-22 04:26UTC

Event contains 9286 original clicks, 4643 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3646 clicks) .

Median statistics for 3646 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.64
Median 10dB Center Frequency [kHz] 8
Median 3dB Bandwidth [kHz] (lower-upper) 1.33 (6.73 - 8.5)
Median 10dB Bandwidth [kHz] (lower-upper) 3.98 (5.56 - 10.3)
Median duration [μs] (25-75 percentile) 1530 (1000 - 2278)

Event ID: 8595.241122042606.wav

Time: 2024-11-22 04:26UTC to 2024-11-22 04:32UTC

Event contains 9510 original clicks, 4755 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3687 clicks) .

Median statistics for 3687 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.76
Median 10dB Center Frequency [kHz] 7.96
Median 3dB Bandwidth [kHz] (lower-upper) 1.29 (6.92 - 8.54)
Median 10dB Bandwidth [kHz] (lower-upper) 4.03 (5.54 - 10.4)
Median duration [μs] (25-75 percentile) 1468 (1000 - 2278)

Event ID: 8595.241122043206.wav

Time: 2024-11-22 04:32UTC to 2024-11-22 04:38UTC

Event contains 10298 original clicks, 5149 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4027 clicks) .

Median statistics for 4027 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8
Median 3dB Center Frequency [kHz] 7.94
Median 10dB Center Frequency [kHz] 8.13
Median 3dB Bandwidth [kHz] (lower-upper) 1.31 (7.11 - 8.75)
Median 10dB Bandwidth [kHz] (lower-upper) 4.21 (5.54 - 10.5)
Median duration [μs] (25-75 percentile) 1499 (1000 - 2255)

Event ID: 8595.241122043806.wav

Time: 2024-11-22 04:38UTC to 2024-11-22 04:44UTC

Event contains 11772 original clicks, 5886 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4853 clicks) .

Median statistics for 4853 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.69
Median 10dB Center Frequency [kHz] 7.91
Median 3dB Bandwidth [kHz] (lower-upper) 1.38 (6.82 - 8.54)
Median 10dB Bandwidth [kHz] (lower-upper) 4.18 (5.05 - 10.3)
Median duration [μs] (25-75 percentile) 1739 (1000 - 2391)

Event ID: 8595.241122044406.wav

Time: 2024-11-22 04:44UTC to 2024-11-22 04:50UTC

Event contains 11302 original clicks, 5651 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4447 clicks) .

Median statistics for 4447 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8
Median 3dB Center Frequency [kHz] 7.91
Median 10dB Center Frequency [kHz] 8.05
Median 3dB Bandwidth [kHz] (lower-upper) 1.2 (7.18 - 8.68)
Median 10dB Bandwidth [kHz] (lower-upper) 3.69 (5.73 - 10.1)
Median duration [μs] (25-75 percentile) 1275 (1000 - 2224)

Event ID: 8595.241122045006.wav

Time: 2024-11-22 04:50UTC to 2024-11-22 04:56UTC

Event contains 11008 original clicks, 5504 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4732 clicks) .

Median statistics for 4732 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.61
Median 10dB Center Frequency [kHz] 7.77
Median 3dB Bandwidth [kHz] (lower-upper) 1.28 (6.81 - 8.43)
Median 10dB Bandwidth [kHz] (lower-upper) 3.9 (5.32 - 10.1)
Median duration [μs] (25-75 percentile) 1225 (1000 - 2331)

Event ID: 8595.241122045606.wav

Time: 2024-11-22 04:56UTC to 2024-11-22 05:02UTC

Event contains 7978 original clicks, 3989 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3522 clicks) .

Median statistics for 3522 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8.4
Median 3dB Center Frequency [kHz] 8.29
Median 10dB Center Frequency [kHz] 8.35
Median 3dB Bandwidth [kHz] (lower-upper) 1.23 (7.46 - 9.05)
Median 10dB Bandwidth [kHz] (lower-upper) 3.89 (5.73 - 10.5)
Median duration [μs] (25-75 percentile) 1236 (1000 - 2406)

Event ID: 8595.241122050206.wav

Time: 2024-11-22 05:02UTC to 2024-11-22 05:08UTC

Event contains 9088 original clicks, 4544 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4100 clicks) .

Median statistics for 4100 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8.8
Median 3dB Center Frequency [kHz] 8.54
Median 10dB Center Frequency [kHz] 8.66
Median 3dB Bandwidth [kHz] (lower-upper) 1.25 (7.73 - 9.38)
Median 10dB Bandwidth [kHz] (lower-upper) 3.92 (6.02 - 10.9)
Median duration [μs] (25-75 percentile) 953 (438 - 2312)

Event ID: 8595.241122050806.wav

Time: 2024-11-22 05:08UTC to 2024-11-22 05:14UTC

Event contains 8110 original clicks, 4055 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3837 clicks) .

Median statistics for 3837 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8.8
Median 3dB Center Frequency [kHz] 8.86
Median 10dB Center Frequency [kHz] 9.02
Median 3dB Bandwidth [kHz] (lower-upper) 1.59 (7.82 - 9.74)
Median 10dB Bandwidth [kHz] (lower-upper) 4.74 (5.88 - 11.6)
Median duration [μs] (25-75 percentile) 1257 (1000 - 2461)

Event ID: 8595.241122051406.wav

Time: 2024-11-22 05:14UTC to 2024-11-22 05:20UTC

Event contains 5286 original clicks, 2643 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2471 clicks) .

Median statistics for 2471 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 9.2
Median 3dB Center Frequency [kHz] 9
Median 10dB Center Frequency [kHz] 9.26
Median 3dB Bandwidth [kHz] (lower-upper) 1.43 ( 7.8 - 10.1)
Median 10dB Bandwidth [kHz] (lower-upper) 4.84 (5.61 - 12.1)
Median duration [μs] (25-75 percentile) 1129 (1000 - 2306)

Event ID: 8595.241122052006.wav

Time: 2024-11-22 05:20UTC to 2024-11-22 05:26UTC

Event contains 3656 original clicks, 1828 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1725 clicks) .

Median statistics for 1725 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 10
Median 3dB Center Frequency [kHz] 10
Median 10dB Center Frequency [kHz] 10.2
Median 3dB Bandwidth [kHz] (lower-upper) 1.93 (8.54 - 11.3)
Median 10dB Bandwidth [kHz] (lower-upper) 6.34 (6.01 - 13.6)
Median duration [μs] (25-75 percentile) 1588 (1000 - 2471)

Event ID: 8595.241122052606.wav

Time: 2024-11-22 05:26UTC to 2024-11-22 05:32UTC

Event contains 2790 original clicks, 1395 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1328 clicks) .

Median statistics for 1328 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 10
Median 3dB Center Frequency [kHz] 9.87
Median 10dB Center Frequency [kHz] 10
Median 3dB Bandwidth [kHz] (lower-upper) 1.64 (8.61 - 10.9)
Median 10dB Bandwidth [kHz] (lower-upper) 5.39 (6.49 - 12.8)
Median duration [μs] (25-75 percentile) 1444 (1000 - 2456)

Event ID: 8595.241122053206.wav

Time: 2024-11-22 05:32UTC to 2024-11-22 05:38UTC

Event contains 4128 original clicks, 2064 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1962 clicks) .

Median statistics for 1962 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 9.6
Median 3dB Center Frequency [kHz] 9.37
Median 10dB Center Frequency [kHz] 9.58
Median 3dB Bandwidth [kHz] (lower-upper) 1.41 (8.46 - 10.2)
Median 10dB Bandwidth [kHz] (lower-upper) 4.83 (6.56 - 12.2)
Median duration [μs] (25-75 percentile) 1309 (1000 - 2427)

Event ID: 8595.241122053806.wav

Time: 2024-11-22 05:38UTC to 2024-11-22 05:44UTC

Event contains 1914 original clicks, 957 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 875 clicks) .

Median statistics for 875 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 10
Median 3dB Center Frequency [kHz] 10.2
Median 10dB Center Frequency [kHz] 10.5
Median 3dB Bandwidth [kHz] (lower-upper) 1.7 (9.01 - 11.3)
Median 10dB Bandwidth [kHz] (lower-upper) 5.42 (7.18 - 13.4)
Median duration [μs] (25-75 percentile) 1387 (1000 - 2464)

Event ID: 8595.241122054406.wav

Time: 2024-11-22 05:44UTC to 2024-11-22 05:50UTC

Event contains 3972 original clicks, 1986 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1873 clicks) .

Median statistics for 1873 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 10.8
Median 3dB Center Frequency [kHz] 10.7
Median 10dB Center Frequency [kHz] 11.1
Median 3dB Bandwidth [kHz] (lower-upper) 1.57 ( 9.7 - 11.6)
Median 10dB Bandwidth [kHz] (lower-upper) 5.78 (7.23 - 13.9)
Median duration [μs] (25-75 percentile) 1275 (1000 - 2461)

Event ID: 8595.241122055006.wav

Time: 2024-11-22 05:50UTC to 2024-11-22 05:56UTC

Event contains 6624 original clicks, 3312 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3107 clicks) .

Median statistics for 3107 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 10.4
Median 3dB Center Frequency [kHz] 10.2
Median 10dB Center Frequency [kHz] 10.5
Median 3dB Bandwidth [kHz] (lower-upper) 1.66 (9.02 - 11.3)
Median 10dB Bandwidth [kHz] (lower-upper) 5.96 (6.11 - 13.7)
Median duration [μs] (25-75 percentile) 1233 (426 - 2424)

Event ID: 8595.241122055606.wav

Time: 2024-11-22 05:56UTC to 2024-11-22 06:02UTC

Event contains 19608 original clicks, 9804 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 9094 clicks) .

Median statistics for 9094 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8.8
Median 3dB Center Frequency [kHz] 8.61
Median 10dB Center Frequency [kHz] 9.02
Median 3dB Bandwidth [kHz] (lower-upper) 1.57 (7.41 - 9.73)
Median 10dB Bandwidth [kHz] (lower-upper) 5.48 (4.81 - 12.3)
Median duration [μs] (25-75 percentile) 1283 (362 - 2453)

Event ID: 8595.241122060206.wav

Time: 2024-11-22 06:02UTC to 2024-11-22 06:08UTC

Event contains 23812 original clicks, 11906 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 11018 clicks) .

Median statistics for 11018 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8.4
Median 3dB Center Frequency [kHz] 8.22
Median 10dB Center Frequency [kHz] 8.74
Median 3dB Bandwidth [kHz] (lower-upper) 1.49 (7.12 - 9.33)
Median 10dB Bandwidth [kHz] (lower-upper) 5.04 (4.74 - 11.8)
Median duration [μs] (25-75 percentile) 1280 (482 - 2461)

Event ID: 8595.241122060806.wav

Time: 2024-11-22 06:08UTC to 2024-11-22 06:14UTC

Event contains 21714 original clicks, 10857 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 10125 clicks) .

Median statistics for 10125 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.36
Median 10dB Center Frequency [kHz] 8.01
Median 3dB Bandwidth [kHz] (lower-upper) 1.51 (6.21 - 8.52)
Median 10dB Bandwidth [kHz] (lower-upper) 4.89 (4.21 - 11)
Median duration [μs] (25-75 percentile) 1249 (495 - 2464)

Event ID: 8595.241122061406.wav

Time: 2024-11-22 06:14UTC to 2024-11-22 06:20UTC

Event contains 18626 original clicks, 9313 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 8789 clicks) .

Median statistics for 8789 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 6.83
Median 10dB Center Frequency [kHz] 7.41
Median 3dB Bandwidth [kHz] (lower-upper) 1.58 (5.74 - 8)
Median 10dB Bandwidth [kHz] (lower-upper) 4.69 (3.98 - 10.4)
Median duration [μs] (25-75 percentile) 1293 (1000 - 2471)

Event ID: 8595.241122062006.wav

Time: 2024-11-22 06:20UTC to 2024-11-22 06:26UTC

Event contains 17050 original clicks, 8525 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 7933 clicks) .

Median statistics for 7933 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.45
Median 10dB Center Frequency [kHz] 6.93
Median 3dB Bandwidth [kHz] (lower-upper) 1.48 (5.34 - 7.51)
Median 10dB Bandwidth [kHz] (lower-upper) 4.61 ( 3.9 - 9.66)
Median duration [μs] (25-75 percentile) 1353 (1000 - 2466)

Event ID: 8595.241122062606.wav

Time: 2024-11-22 06:26UTC to 2024-11-22 06:32UTC

Event contains 16844 original clicks, 8422 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 7830 clicks) .

Median statistics for 7830 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.93
Median 10dB Center Frequency [kHz] 6.5
Median 3dB Bandwidth [kHz] (lower-upper) 1.44 (4.95 - 6.87)
Median 10dB Bandwidth [kHz] (lower-upper) 4.47 (3.72 - 9.06)
Median duration [μs] (25-75 percentile) 1332 (1000 - 2443)

Event ID: 8595.241122063206.wav

Time: 2024-11-22 06:32UTC to 2024-11-22 06:38UTC

Event contains 17682 original clicks, 8841 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 8072 clicks) .

Median statistics for 8072 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.18
Median 10dB Center Frequency [kHz] 6.63
Median 3dB Bandwidth [kHz] (lower-upper) 1.43 (5.22 - 7.08)
Median 10dB Bandwidth [kHz] (lower-upper) 4.15 (3.95 - 9)
Median duration [μs] (25-75 percentile) 1421 (1000 - 2453)

Event ID: 8595.241122063806.wav

Time: 2024-11-22 06:38UTC to 2024-11-22 06:44UTC

Event contains 15846 original clicks, 7923 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 7026 clicks) .

Median statistics for 7026 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 6.04
Median 10dB Center Frequency [kHz] 6.49
Median 3dB Bandwidth [kHz] (lower-upper) 1.38 (5.11 - 6.93)
Median 10dB Bandwidth [kHz] (lower-upper) 4.11 (3.87 - 8.87)
Median duration [μs] (25-75 percentile) 1719 (1000 - 2419)

Event ID: 8595.241122064406.wav

Time: 2024-11-22 06:44UTC to 2024-11-22 06:50UTC

Event contains 11274 original clicks, 5637 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4890 clicks) .

Median statistics for 4890 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.83
Median 10dB Center Frequency [kHz] 6.22
Median 3dB Bandwidth [kHz] (lower-upper) 1.3 (4.96 - 6.65)
Median 10dB Bandwidth [kHz] (lower-upper) 3.74 (3.84 - 8.32)
Median duration [μs] (25-75 percentile) 1616 (1000 - 2351)

Event ID: 8595.241122065006.wav

Time: 2024-11-22 06:50UTC to 2024-11-22 06:56UTC

Event contains 7938 original clicks, 3969 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3243 clicks) .

Median statistics for 3243 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.18
Median 10dB Center Frequency [kHz] 6.48
Median 3dB Bandwidth [kHz] (lower-upper) 1.3 (5.41 - 6.96)
Median 10dB Bandwidth [kHz] (lower-upper) 3.89 (4.19 - 8.68)
Median duration [μs] (25-75 percentile) 1807 (1116 - 2333)

Event ID: 8595.241122065606.wav

Time: 2024-11-22 06:56UTC to 2024-11-22 07:02UTC

Event contains 4700 original clicks, 2350 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1797 clicks) .

Median statistics for 1797 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.27
Median 10dB Center Frequency [kHz] 6.46
Median 3dB Bandwidth [kHz] (lower-upper) 1.35 ( 5.4 - 7.1)
Median 10dB Bandwidth [kHz] (lower-upper) 3.79 (4.25 - 8.58)
Median duration [μs] (25-75 percentile) 1728 (1066 - 2299)

Event ID: 8595.241122070206.wav

Time: 2024-11-22 07:02UTC to 2024-11-22 07:08UTC

Event contains 2938 original clicks, 1469 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1155 clicks) .

Median statistics for 1155 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.22
Median 10dB Center Frequency [kHz] 6.6
Median 3dB Bandwidth [kHz] (lower-upper) 1.31 ( 5.5 - 7.11)
Median 10dB Bandwidth [kHz] (lower-upper) 3.72 (4.32 - 8.95)
Median duration [μs] (25-75 percentile) 1744 (1002 - 2302)

Event ID: 8595.241122071406.wav

Time: 2024-11-22 07:14UTC to 2024-11-22 07:20UTC

Event contains 440 original clicks, 220 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 159 clicks) .

Median statistics for 159 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 5.9
Median 10dB Center Frequency [kHz] 6.52
Median 3dB Bandwidth [kHz] (lower-upper) 1.43 (4.97 - 6.99)
Median 10dB Bandwidth [kHz] (lower-upper) 4.02 (3.87 - 8.78)
Median duration [μs] (25-75 percentile) 1389 (1000 - 2091)

Event ID: 8595.241122072006.wav

Time: 2024-11-22 07:20UTC to 2024-11-22 07:26UTC

Event contains 1996 original clicks, 998 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 623 clicks) .

Median statistics for 623 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.36
Median 10dB Center Frequency [kHz] 6.52
Median 3dB Bandwidth [kHz] (lower-upper) 1.09 (5.61 - 7.06)
Median 10dB Bandwidth [kHz] (lower-upper) 3.39 (4.54 - 8.48)
Median duration [μs] (25-75 percentile) 1528 (1000 - 2139)

Event ID: 8595.241122072606.wav

Time: 2024-11-22 07:26UTC to 2024-11-22 07:32UTC

Event contains 3440 original clicks, 1720 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1194 clicks) .

Median statistics for 1194 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8
Median 3dB Center Frequency [kHz] 7.75
Median 10dB Center Frequency [kHz] 7.92
Median 3dB Bandwidth [kHz] (lower-upper) 1.05 (7.19 - 8.32)
Median 10dB Bandwidth [kHz] (lower-upper) 3.1 (6.24 - 9.8)
Median duration [μs] (25-75 percentile) 1546 (1000 - 2144)

Event ID: 8595.241122073206.wav

Time: 2024-11-22 07:32UTC to 2024-11-22 07:38UTC

Event contains 4258 original clicks, 2129 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1538 clicks) .

Median statistics for 1538 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8.8
Median 3dB Center Frequency [kHz] 8.57
Median 10dB Center Frequency [kHz] 8.5
Median 3dB Bandwidth [kHz] (lower-upper) 1.04 (7.94 - 9.12)
Median 10dB Bandwidth [kHz] (lower-upper) 2.91 (6.54 - 10.1)
Median duration [μs] (25-75 percentile) 1499 (1000 - 2143)

Event ID: 8595.241122073806.wav

Time: 2024-11-22 07:38UTC to 2024-11-22 07:44UTC

Event contains 4208 original clicks, 2104 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1551 clicks) .

Median statistics for 1551 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8
Median 3dB Center Frequency [kHz] 7.75
Median 10dB Center Frequency [kHz] 8.07
Median 3dB Bandwidth [kHz] (lower-upper) 1.11 (7.16 - 8.42)
Median 10dB Bandwidth [kHz] (lower-upper) 3.7 (5.76 - 10)
Median duration [μs] (25-75 percentile) 1470 (1000 - 2204)

Event ID: 8595.241122074406.wav

Time: 2024-11-22 07:44UTC to 2024-11-22 07:50UTC

Event contains 3782 original clicks, 1891 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1385 clicks) .

Median statistics for 1385 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8
Median 3dB Center Frequency [kHz] 7.84
Median 10dB Center Frequency [kHz] 8
Median 3dB Bandwidth [kHz] (lower-upper) 1.11 (7.27 - 8.45)
Median 10dB Bandwidth [kHz] (lower-upper) 3.62 (5.93 - 10.1)
Median duration [μs] (25-75 percentile) 1389 (1000 - 2182)

Event ID: 8595.241122075006.wav

Time: 2024-11-22 07:50UTC to 2024-11-22 07:56UTC

Event contains 3968 original clicks, 1984 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1457 clicks) .

Median statistics for 1457 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.49
Median 10dB Center Frequency [kHz] 7.63
Median 3dB Bandwidth [kHz] (lower-upper) 1.1 (6.83 - 8.11)
Median 10dB Bandwidth [kHz] (lower-upper) 3.61 (5.41 - 9.68)
Median duration [μs] (25-75 percentile) 1541 (1000 - 2250)

Event ID: 8595.241122075606.wav

Time: 2024-11-22 07:56UTC to 2024-11-22 08:02UTC

Event contains 2452 original clicks, 1226 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 911 clicks) .

Median statistics for 911 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8.4
Median 3dB Center Frequency [kHz] 8
Median 10dB Center Frequency [kHz] 8.06
Median 3dB Bandwidth [kHz] (lower-upper) 1.36 (7.31 - 8.81)
Median 10dB Bandwidth [kHz] (lower-upper) 4.16 (5.47 - 10.5)
Median duration [μs] (25-75 percentile) 1207 (1000 - 2087)

Event ID: 8595.241122080206.wav

Time: 2024-11-22 08:02UTC to 2024-11-22 08:08UTC

Event contains 1578 original clicks, 789 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 603 clicks) .

Median statistics for 603 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8
Median 3dB Center Frequency [kHz] 8.02
Median 10dB Center Frequency [kHz] 8.07
Median 3dB Bandwidth [kHz] (lower-upper) 1.43 (7.09 - 8.85)
Median 10dB Bandwidth [kHz] (lower-upper) 4.7 (5.23 - 10.7)
Median duration [μs] (25-75 percentile) 1262 (1000 - 2108)

Event ID: 8595.241122080806.wav

Time: 2024-11-22 08:08UTC to 2024-11-22 08:14UTC

Event contains 3210 original clicks, 1605 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1253 clicks) .

Median statistics for 1253 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8
Median 3dB Center Frequency [kHz] 8
Median 10dB Center Frequency [kHz] 8.07
Median 3dB Bandwidth [kHz] (lower-upper) 1.35 (7.14 - 8.85)
Median 10dB Bandwidth [kHz] (lower-upper) 4.35 (5.44 - 10.6)
Median duration [μs] (25-75 percentile) 1139 (1000 - 1929)

Event ID: 8595.241122081406.wav

Time: 2024-11-22 08:14UTC to 2024-11-22 08:20UTC

Event contains 6660 original clicks, 3330 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2482 clicks) .

Median statistics for 2482 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8
Median 3dB Center Frequency [kHz] 7.84
Median 10dB Center Frequency [kHz] 7.74
Median 3dB Bandwidth [kHz] (lower-upper) 1.31 (6.98 - 8.61)
Median 10dB Bandwidth [kHz] (lower-upper) 4.22 (5.21 - 10.2)
Median duration [μs] (25-75 percentile) 1472 (1000 - 2260)

Event ID: 8595.241122082006.wav

Time: 2024-11-22 08:20UTC to 2024-11-22 08:26UTC

Event contains 6412 original clicks, 3206 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2519 clicks) .

Median statistics for 2519 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8.4
Median 3dB Center Frequency [kHz] 8.08
Median 10dB Center Frequency [kHz] 8.3
Median 3dB Bandwidth [kHz] (lower-upper) 1.32 (7.36 - 8.84)
Median 10dB Bandwidth [kHz] (lower-upper) 4.17 ( 5.9 - 10.5)
Median duration [μs] (25-75 percentile) 1290 (1000 - 2080)

Event ID: 8595.241122082606.wav

Time: 2024-11-22 08:26UTC to 2024-11-22 08:32UTC

Event contains 9264 original clicks, 4632 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3805 clicks) .

Median statistics for 3805 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8.4
Median 3dB Center Frequency [kHz] 8.1
Median 10dB Center Frequency [kHz] 8.23
Median 3dB Bandwidth [kHz] (lower-upper) 1.34 (7.33 - 8.9)
Median 10dB Bandwidth [kHz] (lower-upper) 4.12 (5.76 - 10.5)
Median duration [μs] (25-75 percentile) 1270 (1000 - 2148)

Event ID: 8595.241122083206.wav

Time: 2024-11-22 08:32UTC to 2024-11-22 08:38UTC

Event contains 11594 original clicks, 5797 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 5173 clicks) .

Median statistics for 5173 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8
Median 3dB Center Frequency [kHz] 7.97
Median 10dB Center Frequency [kHz] 8.19
Median 3dB Bandwidth [kHz] (lower-upper) 1.35 (7.11 - 8.84)
Median 10dB Bandwidth [kHz] (lower-upper) 4.06 ( 5.6 - 10.5)
Median duration [μs] (25-75 percentile) 1150 (1000 - 1968)

Event ID: 8595.241122083806.wav

Time: 2024-11-22 08:38UTC to 2024-11-22 08:44UTC

Event contains 12534 original clicks, 6267 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 5721 clicks) .

Median statistics for 5721 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.58
Median 10dB Center Frequency [kHz] 7.83
Median 3dB Bandwidth [kHz] (lower-upper) 1.33 (6.75 - 8.37)
Median 10dB Bandwidth [kHz] (lower-upper) 4.07 (5.14 - 10.2)
Median duration [μs] (25-75 percentile) 1369 (1000 - 2450)

Event ID: 8595.241122084406.wav

Time: 2024-11-22 08:44UTC to 2024-11-22 08:50UTC

Event contains 12674 original clicks, 6337 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 6016 clicks) .

Median statistics for 6016 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8.8
Median 3dB Center Frequency [kHz] 8.56
Median 10dB Center Frequency [kHz] 8.75
Median 3dB Bandwidth [kHz] (lower-upper) 1.56 (7.62 - 9.53)
Median 10dB Bandwidth [kHz] (lower-upper) 4.64 (5.75 - 11.4)
Median duration [μs] (25-75 percentile) 1030 (1000 - 2404)

Event ID: 8595.241122085006.wav

Time: 2024-11-22 08:50UTC to 2024-11-22 08:56UTC

Event contains 11138 original clicks, 5569 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 5337 clicks) .

Median statistics for 5337 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8.8
Median 3dB Center Frequency [kHz] 8.83
Median 10dB Center Frequency [kHz] 9.07
Median 3dB Bandwidth [kHz] (lower-upper) 1.49 (7.67 - 9.78)
Median 10dB Bandwidth [kHz] (lower-upper) 4.62 (5.68 - 11.6)
Median duration [μs] (25-75 percentile) 1257 (1000 - 2453)

Event ID: 8595.241122085606.wav

Time: 2024-11-22 08:56UTC to 2024-11-22 09:02UTC

Event contains 9230 original clicks, 4615 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4362 clicks) .

Median statistics for 4362 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8.8
Median 3dB Center Frequency [kHz] 8.9
Median 10dB Center Frequency [kHz] 8.88
Median 3dB Bandwidth [kHz] (lower-upper) 1.4 (8.04 - 9.72)
Median 10dB Bandwidth [kHz] (lower-upper) 4.25 (6.11 - 11.3)
Median duration [μs] (25-75 percentile) 971 (430 - 1976)

Event ID: 8595.241122090206.wav

Time: 2024-11-22 09:02UTC to 2024-11-22 09:08UTC

Event contains 7242 original clicks, 3621 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3445 clicks) .

Median statistics for 3445 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8.8
Median 3dB Center Frequency [kHz] 8.76
Median 10dB Center Frequency [kHz] 9.03
Median 3dB Bandwidth [kHz] (lower-upper) 1.53 (7.75 - 9.8)
Median 10dB Bandwidth [kHz] (lower-upper) 4.74 (5.71 - 11.6)
Median duration [μs] (25-75 percentile) 1249 (1000 - 2461)

Event ID: 8595.241122090806.wav

Time: 2024-11-22 09:08UTC to 2024-11-22 09:14UTC

Event contains 7696 original clicks, 3848 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3669 clicks) .

Median statistics for 3669 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 9.6
Median 3dB Center Frequency [kHz] 9.58
Median 10dB Center Frequency [kHz] 9.77
Median 3dB Bandwidth [kHz] (lower-upper) 1.65 (8.44 - 10.6)
Median 10dB Bandwidth [kHz] (lower-upper) 5.28 ( 6.2 - 12.8)
Median duration [μs] (25-75 percentile) 1314 (1000 - 2464)

Event ID: 8595.241122091406.wav

Time: 2024-11-22 09:14UTC to 2024-11-22 09:20UTC

Event contains 5662 original clicks, 2831 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2694 clicks) .

Median statistics for 2694 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 10.4
Median 3dB Center Frequency [kHz] 10.2
Median 10dB Center Frequency [kHz] 10.6
Median 3dB Bandwidth [kHz] (lower-upper) 1.84 (9.01 - 11.3)
Median 10dB Bandwidth [kHz] (lower-upper) 5.88 (6.67 - 13.6)
Median duration [μs] (25-75 percentile) 1543 (1000 - 2471)

Event ID: 8595.241122092006.wav

Time: 2024-11-22 09:20UTC to 2024-11-22 09:26UTC

Event contains 3652 original clicks, 1826 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1745 clicks) .

Median statistics for 1745 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 10.8
Median 3dB Center Frequency [kHz] 10.7
Median 10dB Center Frequency [kHz] 10.9
Median 3dB Bandwidth [kHz] (lower-upper) 1.69 (9.45 - 11.7)
Median 10dB Bandwidth [kHz] (lower-upper) 5.51 (6.86 - 13.7)
Median duration [μs] (25-75 percentile) 1374 (464 - 2461)

Event ID: 8595.241122092606.wav

Time: 2024-11-22 09:26UTC to 2024-11-22 09:32UTC

Event contains 16118 original clicks, 8059 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 7671 clicks) .

Median statistics for 7671 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 10.4
Median 3dB Center Frequency [kHz] 10.3
Median 10dB Center Frequency [kHz] 10.4
Median 3dB Bandwidth [kHz] (lower-upper) 1.5 (9.35 - 11.3)
Median 10dB Bandwidth [kHz] (lower-upper) 5.08 (7.12 - 13.3)
Median duration [μs] (25-75 percentile) 1160 (370 - 2461)

Event ID: 8595.241122093206.wav

Time: 2024-11-22 09:32UTC to 2024-11-22 09:38UTC

Event contains 15516 original clicks, 7758 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 7343 clicks) .

Median statistics for 7343 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 10.4
Median 3dB Center Frequency [kHz] 10.3
Median 10dB Center Frequency [kHz] 10.5
Median 3dB Bandwidth [kHz] (lower-upper) 1.5 (9.32 - 11.3)
Median 10dB Bandwidth [kHz] (lower-upper) 5.08 (7.04 - 13.4)
Median duration [μs] (25-75 percentile) 1040 (203 - 2383)

Event ID: 8595.241122093806.wav

Time: 2024-11-22 09:38UTC to 2024-11-22 09:44UTC

Event contains 16912 original clicks, 8456 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 7919 clicks) .

Median statistics for 7919 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8.8
Median 3dB Center Frequency [kHz] 8.63
Median 10dB Center Frequency [kHz] 8.76
Median 3dB Bandwidth [kHz] (lower-upper) 1.59 (7.54 - 9.72)
Median 10dB Bandwidth [kHz] (lower-upper) 5.07 (5.24 - 11.8)
Median duration [μs] (25-75 percentile) 1238 (326 - 2437)

Event ID: 8595.241122094406.wav

Time: 2024-11-22 09:44UTC to 2024-11-22 09:50UTC

Event contains 19820 original clicks, 9910 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 9239 clicks) .

Median statistics for 9239 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8
Median 3dB Center Frequency [kHz] 8.1
Median 10dB Center Frequency [kHz] 8.29
Median 3dB Bandwidth [kHz] (lower-upper) 1.55 (7.06 - 9.15)
Median 10dB Bandwidth [kHz] (lower-upper) 4.91 (4.89 - 11.3)
Median duration [μs] (25-75 percentile) 1204 (330 - 2456)

Event ID: 8595.241122095006.wav

Time: 2024-11-22 09:50UTC to 2024-11-22 09:56UTC

Event contains 21990 original clicks, 10995 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 10281 clicks) .

Median statistics for 10281 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8
Median 3dB Center Frequency [kHz] 7.68
Median 10dB Center Frequency [kHz] 8.16
Median 3dB Bandwidth [kHz] (lower-upper) 1.69 (6.49 - 8.78)
Median 10dB Bandwidth [kHz] (lower-upper) 5.28 (4.41 - 11.1)
Median duration [μs] (25-75 percentile) 1277 (375 - 2466)

Event ID: 8595.241122095606.wav

Time: 2024-11-22 09:56UTC to 2024-11-22 10:02UTC

Event contains 21424 original clicks, 10712 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 9997 clicks) .

Median statistics for 9997 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.89
Median 10dB Center Frequency [kHz] 7.63
Median 3dB Bandwidth [kHz] (lower-upper) 1.74 (5.72 - 8)
Median 10dB Bandwidth [kHz] (lower-upper) 5.23 (3.94 - 10.8)
Median duration [μs] (25-75 percentile) 1358 (461 - 2474)

Event ID: 8595.241122100206.wav

Time: 2024-11-22 10:02UTC to 2024-11-22 10:08UTC

Event contains 20994 original clicks, 10497 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 9883 clicks) .

Median statistics for 9883 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.52
Median 10dB Center Frequency [kHz] 7.24
Median 3dB Bandwidth [kHz] (lower-upper) 1.63 (5.39 - 7.69)
Median 10dB Bandwidth [kHz] (lower-upper) 4.98 ( 3.8 - 10.3)
Median duration [μs] (25-75 percentile) 1413 (1000 - 2477)

Event ID: 8595.241122100806.wav

Time: 2024-11-22 10:08UTC to 2024-11-22 10:10UTC

Event contains 10316 original clicks, 5158 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4788 clicks) .

Median statistics for 4788 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.42
Median 10dB Center Frequency [kHz] 7.13
Median 3dB Bandwidth [kHz] (lower-upper) 1.64 (5.29 - 7.7)
Median 10dB Bandwidth [kHz] (lower-upper) 4.86 (3.86 - 10)
Median duration [μs] (25-75 percentile) 1405 (1000 - 2479)

Event ID: 8595.241122101058.wav

Time: 2024-11-22 10:10UTC to 2024-11-22 10:16UTC

Event contains 22170 original clicks, 11085 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 10142 clicks) .

Median statistics for 10142 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 6.86
Median 10dB Center Frequency [kHz] 7.38
Median 3dB Bandwidth [kHz] (lower-upper) 1.52 (5.84 - 7.98)
Median 10dB Bandwidth [kHz] (lower-upper) 4.8 (4.15 - 10.4)
Median duration [μs] (25-75 percentile) 1161 (459 - 2461)

Event ID: 8595.241122101658.wav

Time: 2024-11-22 10:16UTC to 2024-11-22 10:22UTC

Event contains 22618 original clicks, 11309 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 10428 clicks) .

Median statistics for 10428 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.55
Median 10dB Center Frequency [kHz] 7.15
Median 3dB Bandwidth [kHz] (lower-upper) 1.47 ( 5.6 - 7.52)
Median 10dB Bandwidth [kHz] (lower-upper) 4.37 (4.08 - 9.84)
Median duration [μs] (25-75 percentile) 1173 (490 - 2450)

Event ID: 8595.241122102258.wav

Time: 2024-11-22 10:22UTC to 2024-11-22 10:28UTC

Event contains 19918 original clicks, 9959 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 9325 clicks) .

Median statistics for 9325 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.29
Median 10dB Center Frequency [kHz] 6.86
Median 3dB Bandwidth [kHz] (lower-upper) 1.5 (5.23 - 7.31)
Median 10dB Bandwidth [kHz] (lower-upper) 4.64 (3.88 - 9.55)
Median duration [μs] (25-75 percentile) 1283 (1000 - 2453)

Event ID: 8595.241122102858.wav

Time: 2024-11-22 10:28UTC to 2024-11-22 10:34UTC

Event contains 19502 original clicks, 9751 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 8920 clicks) .

Median statistics for 8920 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.27
Median 10dB Center Frequency [kHz] 6.67
Median 3dB Bandwidth [kHz] (lower-upper) 1.39 (5.34 - 7.22)
Median 10dB Bandwidth [kHz] (lower-upper) 4.25 (3.95 - 9.14)
Median duration [μs] (25-75 percentile) 1257 (1000 - 2284)

Event ID: 8595.241122103458.wav

Time: 2024-11-22 10:34UTC to 2024-11-22 10:40UTC

Event contains 19314 original clicks, 9657 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 8611 clicks) .

Median statistics for 8611 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.2
Median 10dB Center Frequency [kHz] 6.57
Median 3dB Bandwidth [kHz] (lower-upper) 1.38 (5.31 - 7.17)
Median 10dB Bandwidth [kHz] (lower-upper) 4.21 (3.94 - 9.16)
Median duration [μs] (25-75 percentile) 1207 (1000 - 2186)

Event ID: 8595.241122104058.wav

Time: 2024-11-22 10:40UTC to 2024-11-22 10:46UTC

Event contains 18210 original clicks, 9105 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 7802 clicks) .

Median statistics for 7802 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.91
Median 10dB Center Frequency [kHz] 6.42
Median 3dB Bandwidth [kHz] (lower-upper) 1.39 (5.03 - 6.81)
Median 10dB Bandwidth [kHz] (lower-upper) 4.26 (3.78 - 8.91)
Median duration [μs] (25-75 percentile) 1456 (1000 - 2271)

Event ID: 8595.241122105258.wav

Time: 2024-11-22 10:52UTC to 2024-11-22 10:58UTC

Event contains 6080 original clicks, 3040 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2625 clicks) .

Median statistics for 2625 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.49
Median 10dB Center Frequency [kHz] 6.96
Median 3dB Bandwidth [kHz] (lower-upper) 1.42 (5.57 - 7.34)
Median 10dB Bandwidth [kHz] (lower-upper) 4.41 (4.15 - 9.41)
Median duration [μs] (25-75 percentile) 1473 (1000 - 2273)

Event ID: 8595.241122105858.wav

Time: 2024-11-22 10:58UTC to 2024-11-22 11:04UTC

Event contains 758 original clicks, 379 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 325 clicks) .

Median statistics for 325 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.03
Median 10dB Center Frequency [kHz] 7.34
Median 3dB Bandwidth [kHz] (lower-upper) 1.39 (6.24 - 7.84)
Median 10dB Bandwidth [kHz] (lower-upper) 3.8 (4.55 - 9.62)
Median duration [μs] (25-75 percentile) 1160 (1000 - 1913)

Event ID: 8595.241122110458.wav

Time: 2024-11-22 11:04UTC to 2024-11-22 11:10UTC

Event contains 6170 original clicks, 3085 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2694 clicks) .

Median statistics for 2694 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.05
Median 10dB Center Frequency [kHz] 7.27
Median 3dB Bandwidth [kHz] (lower-upper) 1.34 (6.19 - 7.87)
Median 10dB Bandwidth [kHz] (lower-upper) 4.03 ( 4.7 - 9.65)
Median duration [μs] (25-75 percentile) 1324 (1000 - 2258)

Event ID: 8595.241122111058.wav

Time: 2024-11-22 11:10UTC to 2024-11-22 11:16UTC

Event contains 14310 original clicks, 7155 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 6366 clicks) .

Median statistics for 6366 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.34
Median 10dB Center Frequency [kHz] 7.52
Median 3dB Bandwidth [kHz] (lower-upper) 1.33 (6.48 - 8.18)
Median 10dB Bandwidth [kHz] (lower-upper) 3.94 (4.87 - 9.95)
Median duration [μs] (25-75 percentile) 1431 (1000 - 2323)

Event ID: 8595.241122111658.wav

Time: 2024-11-22 11:16UTC to 2024-11-22 11:22UTC

Event contains 14806 original clicks, 7403 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 6305 clicks) .

Median statistics for 6305 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.38
Median 10dB Center Frequency [kHz] 6.71
Median 3dB Bandwidth [kHz] (lower-upper) 1.27 (5.54 - 7.2)
Median 10dB Bandwidth [kHz] (lower-upper) 3.8 (4.14 - 9)
Median duration [μs] (25-75 percentile) 1781 (1000 - 2398)

Event ID: 8595.241122112258.wav

Time: 2024-11-22 11:22UTC to 2024-11-22 11:28UTC

Event contains 15590 original clicks, 7795 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 6682 clicks) .

Median statistics for 6682 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.69
Median 10dB Center Frequency [kHz] 6.98
Median 3dB Bandwidth [kHz] (lower-upper) 1.26 (5.85 - 7.49)
Median 10dB Bandwidth [kHz] (lower-upper) 3.79 (4.43 - 9.21)
Median duration [μs] (25-75 percentile) 1391 (1000 - 2255)

Event ID: 8595.241122112858.wav

Time: 2024-11-22 11:28UTC to 2024-11-22 11:34UTC

Event contains 13816 original clicks, 6908 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 6257 clicks) .

Median statistics for 6257 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.56
Median 10dB Center Frequency [kHz] 6.97
Median 3dB Bandwidth [kHz] (lower-upper) 1.26 (5.72 - 7.38)
Median 10dB Bandwidth [kHz] (lower-upper) 3.74 (4.51 - 9.3)
Median duration [μs] (25-75 percentile) 1285 (1000 - 2200)

Event ID: 8595.241122113458.wav

Time: 2024-11-22 11:34UTC to 2024-11-22 11:40UTC

Event contains 14408 original clicks, 7204 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 6642 clicks) .

Median statistics for 6642 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 6.99
Median 10dB Center Frequency [kHz] 7.24
Median 3dB Bandwidth [kHz] (lower-upper) 1.31 (6.18 - 7.8)
Median 10dB Bandwidth [kHz] (lower-upper) 3.78 (4.65 - 9.63)
Median duration [μs] (25-75 percentile) 1038 (487 - 1976)

Event ID: 8595.241122114058.wav

Time: 2024-11-22 11:40UTC to 2024-11-22 11:46UTC

Event contains 15184 original clicks, 7592 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 6956 clicks) .

Median statistics for 6956 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8
Median 3dB Center Frequency [kHz] 7.78
Median 10dB Center Frequency [kHz] 8.03
Median 3dB Bandwidth [kHz] (lower-upper) 1.28 (6.78 - 8.58)
Median 10dB Bandwidth [kHz] (lower-upper) 3.92 (5.23 - 10.3)
Median duration [μs] (25-75 percentile) 959 (339 - 1786)

Event ID: 8595.241122114658.wav

Time: 2024-11-22 11:46UTC to 2024-11-22 11:52UTC

Event contains 15202 original clicks, 7601 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 6807 clicks) .

Median statistics for 6807 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.42
Median 10dB Center Frequency [kHz] 6.98
Median 3dB Bandwidth [kHz] (lower-upper) 1.28 (5.51 - 7.25)
Median 10dB Bandwidth [kHz] (lower-upper) 3.83 (4.18 - 9.32)
Median duration [μs] (25-75 percentile) 1298 (1000 - 2302)

Event ID: 8595.241122115258.wav

Time: 2024-11-22 11:52UTC to 2024-11-22 11:58UTC

Event contains 14802 original clicks, 7401 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 6639 clicks) .

Median statistics for 6639 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.23
Median 10dB Center Frequency [kHz] 6.66
Median 3dB Bandwidth [kHz] (lower-upper) 1.25 (5.44 - 6.98)
Median 10dB Bandwidth [kHz] (lower-upper) 3.84 (4.13 - 8.88)
Median duration [μs] (25-75 percentile) 1382 (1000 - 2325)

Event ID: 8595.241122115858.wav

Time: 2024-11-22 11:58UTC to 2024-11-22 12:04UTC

Event contains 13068 original clicks, 6534 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 5814 clicks) .

Median statistics for 5814 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.72
Median 10dB Center Frequency [kHz] 6.17
Median 3dB Bandwidth [kHz] (lower-upper) 1.28 (4.96 - 6.49)
Median 10dB Bandwidth [kHz] (lower-upper) 3.65 (3.86 - 8.28)
Median duration [μs] (25-75 percentile) 1608 (1000 - 2416)

Event ID: 8595.241122121058.wav

Time: 2024-11-22 12:10UTC to 2024-11-22 12:16UTC

Event contains 12336 original clicks, 6168 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 5547 clicks) .

Median statistics for 5547 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.8
Median 10dB Center Frequency [kHz] 6.21
Median 3dB Bandwidth [kHz] (lower-upper) 1.23 (5.02 - 6.58)
Median 10dB Bandwidth [kHz] (lower-upper) 3.65 (3.85 - 8.33)
Median duration [μs] (25-75 percentile) 1457 (1000 - 2391)

Event ID: 8595.241122122258.wav

Time: 2024-11-22 12:22UTC to 2024-11-22 12:28UTC

Event contains 12338 original clicks, 6169 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 5283 clicks) .

Median statistics for 5283 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.93
Median 10dB Center Frequency [kHz] 6.29
Median 3dB Bandwidth [kHz] (lower-upper) 1.25 (5.05 - 6.77)
Median 10dB Bandwidth [kHz] (lower-upper) 3.65 (3.64 - 8.58)
Median duration [μs] (25-75 percentile) 1694 (1000 - 2398)

Event ID: 8595.241122125858.wav

Time: 2024-11-22 12:58UTC to 2024-11-22 13:04UTC

Event contains 9378 original clicks, 4689 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4034 clicks) .

Median statistics for 4034 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.72
Median 10dB Center Frequency [kHz] 5.98
Median 3dB Bandwidth [kHz] (lower-upper) 1.23 (5.07 - 6.44)
Median 10dB Bandwidth [kHz] (lower-upper) 3.5 (3.92 - 8)
Median duration [μs] (25-75 percentile) 1872 (1191 - 2401)

Event ID: 8595.241122130458.wav

Time: 2024-11-22 13:04UTC to 2024-11-22 13:10UTC

Event contains 11864 original clicks, 5932 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 5134 clicks) .

Median statistics for 5134 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.54
Median 10dB Center Frequency [kHz] 6.8
Median 3dB Bandwidth [kHz] (lower-upper) 1.34 (5.67 - 7.33)
Median 10dB Bandwidth [kHz] (lower-upper) 3.82 (4.34 - 9.07)
Median duration [μs] (25-75 percentile) 1807 (1176 - 2393)

Event ID: 8595.241122131058.wav

Time: 2024-11-22 13:10UTC to 2024-11-22 13:16UTC

Event contains 11698 original clicks, 5849 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4920 clicks) .

Median statistics for 4920 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8
Median 3dB Center Frequency [kHz] 7.83
Median 10dB Center Frequency [kHz] 7.92
Median 3dB Bandwidth [kHz] (lower-upper) 1.21 (7.14 - 8.52)
Median 10dB Bandwidth [kHz] (lower-upper) 3.59 (5.65 - 10.1)
Median duration [μs] (25-75 percentile) 1395 (1000 - 2193)

Event ID: 8595.241122131658.wav

Time: 2024-11-22 13:16UTC to 2024-11-22 13:22UTC

Event contains 8712 original clicks, 4356 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3721 clicks) .

Median statistics for 3721 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.58
Median 10dB Center Frequency [kHz] 6.84
Median 3dB Bandwidth [kHz] (lower-upper) 1.15 (5.89 - 7.28)
Median 10dB Bandwidth [kHz] (lower-upper) 3.54 (4.52 - 8.76)
Median duration [μs] (25-75 percentile) 1470 (1000 - 2192)

Event ID: 8595.241122132258.wav

Time: 2024-11-22 13:22UTC to 2024-11-22 13:28UTC

Event contains 10112 original clicks, 5056 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4438 clicks) .

Median statistics for 4438 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.71
Median 10dB Center Frequency [kHz] 7.73
Median 3dB Bandwidth [kHz] (lower-upper) 1.14 (7.01 - 8.4)
Median 10dB Bandwidth [kHz] (lower-upper) 3.43 (5.44 - 9.82)
Median duration [μs] (25-75 percentile) 1257 (1000 - 2039)

Event ID: 8595.241122132858.wav

Time: 2024-11-22 13:28UTC to 2024-11-22 13:34UTC

Event contains 9644 original clicks, 4822 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4383 clicks) .

Median statistics for 4383 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.69
Median 10dB Center Frequency [kHz] 6.99
Median 3dB Bandwidth [kHz] (lower-upper) 1.24 (5.97 - 7.37)
Median 10dB Bandwidth [kHz] (lower-upper) 3.7 (4.55 - 9.25)
Median duration [μs] (25-75 percentile) 1452 (1000 - 2187)

Event ID: 8595.241122133458.wav

Time: 2024-11-22 13:34UTC to 2024-11-22 13:40UTC

Event contains 8246 original clicks, 4123 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3587 clicks) .

Median statistics for 3587 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.25
Median 10dB Center Frequency [kHz] 6.52
Median 3dB Bandwidth [kHz] (lower-upper) 1.32 (5.45 - 7.13)
Median 10dB Bandwidth [kHz] (lower-upper) 3.76 (4.24 - 8.66)
Median duration [μs] (25-75 percentile) 1447 (1000 - 2231)

Event ID: 8595.241122134058.wav

Time: 2024-11-22 13:40UTC to 2024-11-22 13:46UTC

Event contains 8750 original clicks, 4375 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3943 clicks) .

Median statistics for 3943 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.04
Median 10dB Center Frequency [kHz] 6.37
Median 3dB Bandwidth [kHz] (lower-upper) 1.32 (5.28 - 6.85)
Median 10dB Bandwidth [kHz] (lower-upper) 3.66 (4.02 - 8.51)
Median duration [μs] (25-75 percentile) 1491 (1014 - 2247)

Event ID: 8595.241122134658.wav

Time: 2024-11-22 13:46UTC to 2024-11-22 13:52UTC

Event contains 11272 original clicks, 5636 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 5082 clicks) .

Median statistics for 5082 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.75
Median 10dB Center Frequency [kHz] 6.96
Median 3dB Bandwidth [kHz] (lower-upper) 1.38 (5.91 - 7.52)
Median 10dB Bandwidth [kHz] (lower-upper) 3.91 (4.48 - 9.38)
Median duration [μs] (25-75 percentile) 1440 (1000 - 2221)

Event ID: 8595.241122135258.wav

Time: 2024-11-22 13:52UTC to 2024-11-22 13:58UTC

Event contains 10694 original clicks, 5347 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4782 clicks) .

Median statistics for 4782 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.64
Median 10dB Center Frequency [kHz] 6.01
Median 3dB Bandwidth [kHz] (lower-upper) 1.31 (4.92 - 6.35)
Median 10dB Bandwidth [kHz] (lower-upper) 3.94 (3.58 - 8.4)
Median duration [μs] (25-75 percentile) 1439 (1000 - 2166)

Event ID: 8595.241122135858.wav

Time: 2024-11-22 13:58UTC to 2024-11-22 14:04UTC

Event contains 11002 original clicks, 5501 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4852 clicks) .

Median statistics for 4852 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.72
Median 10dB Center Frequency [kHz] 6.12
Median 3dB Bandwidth [kHz] (lower-upper) 1.35 (4.95 - 6.53)
Median 10dB Bandwidth [kHz] (lower-upper) 4.02 (3.59 - 8.42)
Median duration [μs] (25-75 percentile) 1418 (1061 - 2125)

Event ID: 8595.241122140458.wav

Time: 2024-11-22 14:04UTC to 2024-11-22 14:10UTC

Event contains 11398 original clicks, 5699 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4728 clicks) .

Median statistics for 4728 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.34
Median 10dB Center Frequency [kHz] 7.5
Median 3dB Bandwidth [kHz] (lower-upper) 1.41 (6.38 - 8.14)
Median 10dB Bandwidth [kHz] (lower-upper) 4.35 (4.32 - 10.2)
Median duration [μs] (25-75 percentile) 1392 (1000 - 2185)

Event ID: 8595.241122141058.wav

Time: 2024-11-22 14:10UTC to 2024-11-22 14:16UTC

Event contains 10148 original clicks, 5074 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4185 clicks) .

Median statistics for 4185 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.74
Median 10dB Center Frequency [kHz] 6.15
Median 3dB Bandwidth [kHz] (lower-upper) 1.29 (4.97 - 6.51)
Median 10dB Bandwidth [kHz] (lower-upper) 3.82 (3.76 - 8.36)
Median duration [μs] (25-75 percentile) 1642 (1126 - 2349)

Event ID: 8595.241122141658.wav

Time: 2024-11-22 14:16UTC to 2024-11-22 14:22UTC

Event contains 9720 original clicks, 4860 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4208 clicks) .

Median statistics for 4208 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.69
Median 10dB Center Frequency [kHz] 6.21
Median 3dB Bandwidth [kHz] (lower-upper) 1.34 (4.81 - 6.53)
Median 10dB Bandwidth [kHz] (lower-upper) 4.14 (3.54 - 8.61)
Median duration [μs] (25-75 percentile) 1642 (1103 - 2349)

Event ID: 8595.241122142258.wav

Time: 2024-11-22 14:22UTC to 2024-11-22 14:28UTC

Event contains 9692 original clicks, 4846 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4229 clicks) .

Median statistics for 4229 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.77
Median 10dB Center Frequency [kHz] 6.23
Median 3dB Bandwidth [kHz] (lower-upper) 1.39 (4.95 - 6.59)
Median 10dB Bandwidth [kHz] (lower-upper) 4.19 (3.64 - 8.68)
Median duration [μs] (25-75 percentile) 1812 (1173 - 2383)

Event ID: 8595.241122142858.wav

Time: 2024-11-22 14:28UTC to 2024-11-22 14:34UTC

Event contains 11424 original clicks, 5712 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4722 clicks) .

Median statistics for 4722 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.03
Median 10dB Center Frequency [kHz] 6.56
Median 3dB Bandwidth [kHz] (lower-upper) 1.48 (5.13 - 6.97)
Median 10dB Bandwidth [kHz] (lower-upper) 4.64 (3.67 - 9.2)
Median duration [μs] (25-75 percentile) 2002 (1233 - 2430)

Event ID: 8595.241122143458.wav

Time: 2024-11-22 14:34UTC to 2024-11-22 14:40UTC

Event contains 9342 original clicks, 4671 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3506 clicks) .

Median statistics for 3506 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.23
Median 10dB Center Frequency [kHz] 6.78
Median 3dB Bandwidth [kHz] (lower-upper) 1.39 (5.42 - 7.05)
Median 10dB Bandwidth [kHz] (lower-upper) 4.28 (4.05 - 9.26)
Median duration [μs] (25-75 percentile) 2065 (1260 - 2417)

Event ID: 8595.241122144058.wav

Time: 2024-11-22 14:40UTC to 2024-11-22 14:46UTC

Event contains 9986 original clicks, 4993 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3858 clicks) .

Median statistics for 3858 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 6.79
Median 10dB Center Frequency [kHz] 7.23
Median 3dB Bandwidth [kHz] (lower-upper) 1.39 ( 5.9 - 7.61)
Median 10dB Bandwidth [kHz] (lower-upper) 4.31 (4.35 - 9.76)
Median duration [μs] (25-75 percentile) 1824 (1111 - 2357)

Event ID: 8595.241122144658.wav

Time: 2024-11-22 14:46UTC to 2024-11-22 14:52UTC

Event contains 7332 original clicks, 3666 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2939 clicks) .

Median statistics for 2939 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.43
Median 10dB Center Frequency [kHz] 6.72
Median 3dB Bandwidth [kHz] (lower-upper) 1.33 (5.63 - 7.19)
Median 10dB Bandwidth [kHz] (lower-upper) 4.03 (4.15 - 9.02)
Median duration [μs] (25-75 percentile) 1577 (1000 - 2325)

Event ID: 8595.241122145258.wav

Time: 2024-11-22 14:52UTC to 2024-11-22 14:58UTC

Event contains 4500 original clicks, 2250 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2035 clicks) .

Median statistics for 2035 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.23
Median 10dB Center Frequency [kHz] 6.65
Median 3dB Bandwidth [kHz] (lower-upper) 1.3 (5.39 - 7.14)
Median 10dB Bandwidth [kHz] (lower-upper) 4.01 (4.05 - 8.89)
Median duration [μs] (25-75 percentile) 1230 (1000 - 2231)

Event ID: 8595.241122205859.wav

Time: 2024-11-22 20:58UTC to 2024-11-22 21:04UTC

Event contains 594 original clicks, 297 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 232 clicks) .

Median statistics for 232 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 6.83
Median 10dB Center Frequency [kHz] 7.61
Median 3dB Bandwidth [kHz] (lower-upper) 1.52 (5.66 - 7.84)
Median 10dB Bandwidth [kHz] (lower-upper) 4.2 (3.84 - 10.4)
Median duration [μs] (25-75 percentile) 388 (190 - 1002)

Event ID: 8595.241123091659.wav

Time: 2024-11-23 09:16UTC to 2024-11-23 09:22UTC

Event contains 1104 original clicks, 552 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 275 clicks) .

Median statistics for 275 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.82
Median 10dB Center Frequency [kHz] 5.88
Median 3dB Bandwidth [kHz] (lower-upper) 1.06 (5.25 - 6.45)
Median 10dB Bandwidth [kHz] (lower-upper) 2.5 (4.58 - 7.14)
Median duration [μs] (25-75 percentile) 50 (3 - 196)

Event ID: 8595.241123092859.wav

Time: 2024-11-23 09:28UTC to 2024-11-23 09:34UTC

Event contains 2438 original clicks, 1219 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 630 clicks) .

Median statistics for 630 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8
Median 3dB Center Frequency [kHz] 7.41
Median 10dB Center Frequency [kHz] 8.07
Median 3dB Bandwidth [kHz] (lower-upper) 0.994 (6.78 - 8.02)
Median 10dB Bandwidth [kHz] (lower-upper) 2.76 ( 5.2 - 10.5)
Median duration [μs] (25-75 percentile) 34 (0 - 319)

Event ID: 8595.241123094059.wav

Time: 2024-11-23 09:40UTC to 2024-11-23 09:46UTC

Event contains 2878 original clicks, 1439 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 949 clicks) .

Median statistics for 949 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 6.87
Median 10dB Center Frequency [kHz] 7.67
Median 3dB Bandwidth [kHz] (lower-upper) 1.26 (6.09 - 7.81)
Median 10dB Bandwidth [kHz] (lower-upper) 4.77 (4.16 - 10.5)
Median duration [μs] (25-75 percentile) 618 (100 - 1152)

Event ID: 8595.241123114659.wav

Time: 2024-11-23 11:46UTC to 2024-11-23 11:52UTC

Event contains 600 original clicks, 300 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 43 clicks) .

Median statistics for 43 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 11.2
Median 3dB Center Frequency [kHz] 10.5
Median 10dB Center Frequency [kHz] 10.4
Median 3dB Bandwidth [kHz] (lower-upper) 0.594 (10.3 - 10.7)
Median 10dB Bandwidth [kHz] (lower-upper) 1.13 (9.27 - 11.3)
Median duration [μs] (25-75 percentile) 78 (1 - 190)

Event ID: 8595.241124111059.wav

Time: 2024-11-24 11:10UTC to 2024-11-24 11:16UTC

Event contains 478 original clicks, 239 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 199 clicks) .

Median statistics for 199 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.79
Median 10dB Center Frequency [kHz] 6.09
Median 3dB Bandwidth [kHz] (lower-upper) 1.36 (5.14 - 6.63)
Median 10dB Bandwidth [kHz] (lower-upper) 3.87 (4.01 - 8.17)
Median duration [μs] (25-75 percentile) 482 (100 - 1290)

Event ID: 8595.241124113459.wav

Time: 2024-11-24 11:34UTC to 2024-11-24 11:40UTC

Event contains 430 original clicks, 215 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 177 clicks) .

Median statistics for 177 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.65
Median 10dB Center Frequency [kHz] 5.89
Median 3dB Bandwidth [kHz] (lower-upper) 1.31 (4.91 - 6.56)
Median 10dB Bandwidth [kHz] (lower-upper) 3.63 (3.83 - 7.65)
Median duration [μs] (25-75 percentile) 521 (100 - 1429)

Event ID: 8595.241124114059.wav

Time: 2024-11-24 11:40UTC to 2024-11-24 11:46UTC

Event contains 602 original clicks, 301 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 248 clicks) .

Median statistics for 248 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 6.06
Median 10dB Center Frequency [kHz] 6.21
Median 3dB Bandwidth [kHz] (lower-upper) 1.32 ( 5.2 - 6.75)
Median 10dB Bandwidth [kHz] (lower-upper) 3.76 (4.14 - 7.93)
Median duration [μs] (25-75 percentile) 871 (214 - 1621)

Event ID: 8595.241124132259.wav

Time: 2024-11-24 13:22UTC to 2024-11-24 13:28UTC

Event contains 400 original clicks, 200 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 134 clicks) .

Median statistics for 134 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 5.89
Median 10dB Center Frequency [kHz] 6.46
Median 3dB Bandwidth [kHz] (lower-upper) 0.912 ( 5.3 - 6.73)
Median 10dB Bandwidth [kHz] (lower-upper) 2.41 (4.47 - 7.76)
Median duration [μs] (25-75 percentile) 529 (100 - 1163)

Event ID: 8595.241124132859.wav

Time: 2024-11-24 13:28UTC to 2024-11-24 13:34UTC

Event contains 1306 original clicks, 653 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 483 clicks) .

Median statistics for 483 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8.4
Median 3dB Center Frequency [kHz] 7.75
Median 10dB Center Frequency [kHz] 8.05
Median 3dB Bandwidth [kHz] (lower-upper) 0.921 (7.36 - 8.18)
Median 10dB Bandwidth [kHz] (lower-upper) 2.67 (6.74 - 9.53)
Median duration [μs] (25-75 percentile) 899 (293 - 1547)

Event ID: 8595.241124133459.wav

Time: 2024-11-24 13:34UTC to 2024-11-24 13:40UTC

Event contains 1328 original clicks, 664 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 461 clicks) .

Median statistics for 461 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8.4
Median 3dB Center Frequency [kHz] 7.8
Median 10dB Center Frequency [kHz] 7.99
Median 3dB Bandwidth [kHz] (lower-upper) 0.959 (7.33 - 8.27)
Median 10dB Bandwidth [kHz] (lower-upper) 2.78 (6.57 - 9.58)
Median duration [μs] (25-75 percentile) 1270 (1000 - 1976)

Event ID: 8595.241124134059.wav

Time: 2024-11-24 13:40UTC to 2024-11-24 13:46UTC

Event contains 1624 original clicks, 812 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 586 clicks) .

Median statistics for 586 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.4
Median 3dB Center Frequency [kHz] 6.96
Median 10dB Center Frequency [kHz] 7.2
Median 3dB Bandwidth [kHz] (lower-upper) 0.999 (6.54 - 7.51)
Median 10dB Bandwidth [kHz] (lower-upper) 2.66 (5.61 - 8.64)
Median duration [μs] (25-75 percentile) 1167 (1000 - 1872)

Event ID: 8595.241124134659.wav

Time: 2024-11-24 13:46UTC to 2024-11-24 13:52UTC

Event contains 1114 original clicks, 557 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 403 clicks) .

Median statistics for 403 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8
Median 3dB Center Frequency [kHz] 7.32
Median 10dB Center Frequency [kHz] 7.56
Median 3dB Bandwidth [kHz] (lower-upper) 0.987 (6.72 - 7.95)
Median 10dB Bandwidth [kHz] (lower-upper) 2.73 (5.74 - 9.53)
Median duration [μs] (25-75 percentile) 876 (323 - 1418)

Event ID: 8595.241124135259.wav

Time: 2024-11-24 13:52UTC to 2024-11-24 13:58UTC

Event contains 532 original clicks, 266 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 208 clicks) .

Median statistics for 208 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8.8
Median 3dB Center Frequency [kHz] 8.56
Median 10dB Center Frequency [kHz] 8.53
Median 3dB Bandwidth [kHz] (lower-upper) 1.38 (7.56 - 9.34)
Median 10dB Bandwidth [kHz] (lower-upper) 2.98 (5.82 - 10.5)
Median duration [μs] (25-75 percentile) 615 (164 - 1126)

Event ID: 8595.241124141059.wav

Time: 2024-11-24 14:10UTC to 2024-11-24 14:16UTC

Event contains 516 original clicks, 258 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 206 clicks) .

Median statistics for 206 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8.4
Median 3dB Center Frequency [kHz] 8.21
Median 10dB Center Frequency [kHz] 8.12
Median 3dB Bandwidth [kHz] (lower-upper) 1.31 (7.45 - 8.93)
Median 10dB Bandwidth [kHz] (lower-upper) 4.12 (5.42 - 10.4)
Median duration [μs] (25-75 percentile) 645 (199 - 1444)

Event ID: 8595.241124141659.wav

Time: 2024-11-24 14:16UTC to 2024-11-24 14:22UTC

Event contains 3882 original clicks, 1941 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1445 clicks) .

Median statistics for 1445 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8
Median 3dB Center Frequency [kHz] 7.88
Median 10dB Center Frequency [kHz] 7.95
Median 3dB Bandwidth [kHz] (lower-upper) 1.29 (7.08 - 8.61)
Median 10dB Bandwidth [kHz] (lower-upper) 3.53 (5.95 - 9.7)
Median duration [μs] (25-75 percentile) 1030 (1000 - 1895)

Event ID: 8595.241124142259.wav

Time: 2024-11-24 14:22UTC to 2024-11-24 14:28UTC

Event contains 8394 original clicks, 4197 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3487 clicks) .

Median statistics for 3487 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8
Median 3dB Center Frequency [kHz] 7.79
Median 10dB Center Frequency [kHz] 7.86
Median 3dB Bandwidth [kHz] (lower-upper) 1.25 (7.07 - 8.49)
Median 10dB Bandwidth [kHz] (lower-upper) 3.5 (6.04 - 9.78)
Median duration [μs] (25-75 percentile) 1356 (1000 - 2282)

Event ID: 8595.241124142859.wav

Time: 2024-11-24 14:28UTC to 2024-11-24 14:34UTC

Event contains 6186 original clicks, 3093 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2831 clicks) .

Median statistics for 2831 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.58
Median 10dB Center Frequency [kHz] 7.77
Median 3dB Bandwidth [kHz] (lower-upper) 1.4 (6.71 - 8.44)
Median 10dB Bandwidth [kHz] (lower-upper) 3.87 ( 5.4 - 9.97)
Median duration [μs] (25-75 percentile) 1439 (1000 - 2435)

Event ID: 8595.241124143459.wav

Time: 2024-11-24 14:34UTC to 2024-11-24 14:40UTC

Event contains 2776 original clicks, 1388 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1271 clicks) .

Median statistics for 1271 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8.4
Median 3dB Center Frequency [kHz] 8.52
Median 10dB Center Frequency [kHz] 8.82
Median 3dB Bandwidth [kHz] (lower-upper) 1.18 (7.62 - 9.38)
Median 10dB Bandwidth [kHz] (lower-upper) 4.36 (5.89 - 11.3)
Median duration [μs] (25-75 percentile) 1056 (1000 - 2211)

Event ID: 8595.241124144059.wav

Time: 2024-11-24 14:40UTC to 2024-11-24 14:46UTC

Event contains 9970 original clicks, 4985 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4613 clicks) .

Median statistics for 4613 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8.4
Median 3dB Center Frequency [kHz] 8.12
Median 10dB Center Frequency [kHz] 8.54
Median 3dB Bandwidth [kHz] (lower-upper) 1.52 (7.02 - 9.11)
Median 10dB Bandwidth [kHz] (lower-upper) 5.08 (5.02 - 11.3)
Median duration [μs] (25-75 percentile) 1423 (1000 - 2458)

Event ID: 8595.241124144659.wav

Time: 2024-11-24 14:46UTC to 2024-11-24 14:52UTC

Event contains 13832 original clicks, 6916 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 6486 clicks) .

Median statistics for 6486 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8
Median 3dB Center Frequency [kHz] 8
Median 10dB Center Frequency [kHz] 8.58
Median 3dB Bandwidth [kHz] (lower-upper) 1.57 (6.79 - 9.06)
Median 10dB Bandwidth [kHz] (lower-upper) 5.05 (4.86 - 11.4)
Median duration [μs] (25-75 percentile) 1474 (1000 - 2461)

Event ID: 8595.241124145259.wav

Time: 2024-11-24 14:52UTC to 2024-11-24 14:58UTC

Event contains 14758 original clicks, 7379 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 6828 clicks) .

Median statistics for 6828 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8.4
Median 3dB Center Frequency [kHz] 8.13
Median 10dB Center Frequency [kHz] 8.63
Median 3dB Bandwidth [kHz] (lower-upper) 1.52 (6.89 - 9.16)
Median 10dB Bandwidth [kHz] (lower-upper) 5.07 (4.91 - 11.4)
Median duration [μs] (25-75 percentile) 1311 (1000 - 2440)

Event ID: 8595.241124145859.wav

Time: 2024-11-24 14:58UTC to 2024-11-24 15:04UTC

Event contains 14500 original clicks, 7250 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 6318 clicks) .

Median statistics for 6318 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8.4
Median 3dB Center Frequency [kHz] 8.18
Median 10dB Center Frequency [kHz] 8.64
Median 3dB Bandwidth [kHz] (lower-upper) 1.34 (7.24 - 9.03)
Median 10dB Bandwidth [kHz] (lower-upper) 4.51 ( 5.3 - 11.2)
Median duration [μs] (25-75 percentile) 776 (125 - 1642)

Event ID: 8595.241124150459.wav

Time: 2024-11-24 15:04UTC to 2024-11-24 15:10UTC

Event contains 13506 original clicks, 6753 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 5089 clicks) .

Median statistics for 5089 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8.4
Median 3dB Center Frequency [kHz] 8.03
Median 10dB Center Frequency [kHz] 8.73
Median 3dB Bandwidth [kHz] (lower-upper) 1.33 (7.04 - 8.97)
Median 10dB Bandwidth [kHz] (lower-upper) 4.96 (5.12 - 11.6)
Median duration [μs] (25-75 percentile) 112 (0 - 1000)

Event ID: 8595.241124151059.wav

Time: 2024-11-24 15:10UTC to 2024-11-24 15:16UTC

Event contains 10094 original clicks, 5047 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3504 clicks) .

Median statistics for 3504 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8
Median 3dB Center Frequency [kHz] 7.61
Median 10dB Center Frequency [kHz] 8.46
Median 3dB Bandwidth [kHz] (lower-upper) 1.33 (6.72 - 8.49)
Median 10dB Bandwidth [kHz] (lower-upper) 5.05 (4.68 - 11.4)
Median duration [μs] (25-75 percentile) 47 (0 - 1000)

Clean up Event Table

# clean up the event table
evTable <- evTable[evTable$keep == TRUE,]
evTable <- subset(evTable, select = -keep)
# save event table as CSV
write.csv(evTable, file = file.path(params$path_dets, 
                                    paste0('eventTable_', params$mission, '_', 
                                           params$drift, '_', Sys.Date(),'.csv')))

#dbDisconnect(dbFile)

After additional filtering based on median peak frequency, 169 events events of 3238 original events remain.